From 44e28e761d78cb632d61ee2ac53bdcd5662e9afb Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Fri, 25 Feb 2022 23:54:55 +0000 Subject: [PATCH 01/57] New feature in RRTMGP enabled ccpp-physics. --- FV3 | 2 +- tests/parm/control_rrtmgp.nml.IN | 5 +---- tests/parm/rap.nml.IN | 4 ---- tests/parm/regional_rrtmgp.nml.IN | 5 +---- 4 files changed, 3 insertions(+), 13 deletions(-) diff --git a/FV3 b/FV3 index bc562d7921..46d4a42361 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit bc562d79211bb643e9b1ee9aa9831895d103efba +Subproject commit 46d4a423617960ac7621aac22c965e2ef46ed786 diff --git a/tests/parm/control_rrtmgp.nml.IN b/tests/parm/control_rrtmgp.nml.IN index fd24763a93..dcfc7ea5e0 100644 --- a/tests/parm/control_rrtmgp.nml.IN +++ b/tests/parm/control_rrtmgp.nml.IN @@ -190,10 +190,7 @@ deflate_level=1 rrtmgp_nBandsSW = 14 doGP_cldoptics_LUT = .true. doGP_lwscat = .true. - use_LW_jacobian = .true. - damp_LW_fluxadj = .true. - lfnc_k = 3125. - lfnc_p0 = 60000. + use_LW_jacobian = .false. lsoil_lsm = 4 do_mynnedmf = .false. do_mynnsfclay = .false. diff --git a/tests/parm/rap.nml.IN b/tests/parm/rap.nml.IN index 8fc5114315..78885680e4 100644 --- a/tests/parm/rap.nml.IN +++ b/tests/parm/rap.nml.IN @@ -223,10 +223,6 @@ deflate_level=1 rrtmgp_nBandsSW = 14 doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] doGP_lwscat = @[DOGP_LWSCAT] - use_LW_jacobian = @[USE_LW_JACOBIAN] - damp_LW_fluxadj = @[DAMP_LW_FLUXADJ] - lfnc_k = @[LFNC_K] - lfnc_p0 = @[LFNC_P0] / &gfdl_cloud_microphysics_nml diff --git a/tests/parm/regional_rrtmgp.nml.IN b/tests/parm/regional_rrtmgp.nml.IN index 8127583e85..b220baaf1b 100644 --- a/tests/parm/regional_rrtmgp.nml.IN +++ b/tests/parm/regional_rrtmgp.nml.IN @@ -211,10 +211,7 @@ rrtmgp_nBandsSW = 14 doGP_cldoptics_LUT = .true. doGP_lwscat = .true. - use_LW_jacobian = .true. - damp_LW_fluxadj = .true. - lfnc_k = 3125. - lfnc_p0 = 60000. + use_LW_jacobian = .false. / &interpolator_nml From 71860e6a0e230993ac58208725e8308c2661f29e Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Fri, 25 Feb 2022 23:56:24 +0000 Subject: [PATCH 02/57] Updated .gitmodules --- .gitmodules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index a963b019d8..2a25ef9061 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/dustinswales/fv3atm + branch = enhanced_GP2cld_coupling [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 From faff600ff25e44967fc0a8d1dbe043050de7d282 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Thu, 3 Mar 2022 20:23:57 +0000 Subject: [PATCH 03/57] Updated physics. New FV3 interstitials. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 46d4a42361..f78c863153 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 46d4a423617960ac7621aac22c965e2ef46ed786 +Subproject commit f78c863153f04ef253527e4c7eeffe60de4ae896 From d6e3162b1263f60a3b6789bdf64a34d6617b2ce6 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Thu, 3 Mar 2022 20:33:51 +0000 Subject: [PATCH 04/57] Cleanup of RRTMGP regression tests. --- tests/parm/control.nml.IN | 13 + tests/parm/control_rrtmgp.nml.IN | 327 --------------- tests/parm/cpld_control.nml.IN | 13 + tests/parm/cpld_control_rrtmgp.nml.IN | 395 ------------------ tests/parm/regional.nml.IN | 13 + tests/parm/regional_rrtmgp.nml.IN | 331 --------------- tests/rt.conf | 4 +- tests/tests/control_p7_rrtmgp | 14 +- tests/tests/control_rrtmgp | 9 +- tests/tests/control_rrtmgp_2threads | 9 +- tests/tests/control_rrtmgp_c192 | 9 +- tests/tests/control_rrtmgp_debug | 9 +- tests/tests/cpld_control_p7_rrtmgp | 8 +- tests/tests/rap_progcld_thompson_rrtmgp_debug | 67 +++ tests/tests/rap_rrtmgp | 105 +++++ tests/tests/rap_rrtmgp_debug | 15 +- tests/tests/regional_RRTMGP | 10 +- 17 files changed, 264 insertions(+), 1087 deletions(-) delete mode 100644 tests/parm/control_rrtmgp.nml.IN delete mode 100644 tests/parm/cpld_control_rrtmgp.nml.IN delete mode 100644 tests/parm/regional_rrtmgp.nml.IN create mode 100644 tests/tests/rap_progcld_thompson_rrtmgp_debug create mode 100644 tests/tests/rap_rrtmgp diff --git a/tests/parm/control.nml.IN b/tests/parm/control.nml.IN index 690b90b654..e439e56da1 100644 --- a/tests/parm/control.nml.IN +++ b/tests/parm/control.nml.IN @@ -185,6 +185,19 @@ deflate_level=1 lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] fscav_aero = @[FSCAV_AERO] + do_RRTMGP = @[DO_RRTMGP] + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] / &gfdl_cloud_microphysics_nml diff --git a/tests/parm/control_rrtmgp.nml.IN b/tests/parm/control_rrtmgp.nml.IN deleted file mode 100644 index dcfc7ea5e0..0000000000 --- a/tests/parm/control_rrtmgp.nml.IN +++ /dev/null @@ -1,327 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = 3000000 - print_memory_usage = .false. -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 42 - nudge_qv = .true. - nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.0 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0. - dnats = 1 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = .false. - res_latlon_dynamics = "" -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6 - h2o_phys = .true. - ldiag3d = .false. - fhcyc = 24 - use_ufo = .true. - pre_rad = .false. - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - iaer = @[IAER] - icliq_sw = 2 - iovr = 3 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .true. - isatmedmf = 1 - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = .false. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = @[CDMBWD] - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 - lsm = 1 - iopt_dveg = 1 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - oz_phys = .false. - oz_phys_2015 = .true. - nstf_name = @[NSTF_NAME] - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = .true. - effr_in = .true. - ldiag_ugwp = .false. - do_ugwp = .false. - do_tofd = .true. - do_sppt = .false. - do_shum = .false. - do_skeb = .false. - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] - do_RRTMGP = .true. - active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 - lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' - lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' - sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' - sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' - rrtmgp_nGptsSW = 112 - rrtmgp_nGptsLW = 128 - rrtmgp_nBandsLW = 16 - rrtmgp_nBandsSW = 14 - doGP_cldoptics_LUT = .true. - doGP_lwscat = .true. - use_LW_jacobian = .false. - lsoil_lsm = 4 - do_mynnedmf = .false. - do_mynnsfclay = .false. - icloud_bl = 1 - bl_mynn_edmf = 1 - bl_mynn_tkeadvect = .false. - bl_mynn_edmf_mom = 1 - min_lakeice = 0.15 - min_seaice = 0.15 - -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = 2 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = @[FNALBC] - FNALBC2 = 'global_albedo4.1x1.grb' - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' - FNTG3C = 'global_tg3clim.2.6x1.5.grb' - FNVEGC = 'global_vegfrac.0.144.decpercent.grb' - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = 'global_soilmgldas.statsgo.t1534.3072.1536.grb' - FNMSKH = 'global_slmask.t1534.3072.1536.grb' - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = 'global_shdmin.0.144x0.144.grb' - FNVMXC = 'global_shdmax.0.144x0.144.grb' - FNSLPC = 'global_slope.1x1.grb' - FNABSC = @[FNABSC] - LDEBUG = .false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = .true. - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = 99999 - FSICS = 99999 - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 54 -/ - diff --git a/tests/parm/cpld_control.nml.IN b/tests/parm/cpld_control.nml.IN index 2635b779b3..509cd5fea9 100644 --- a/tests/parm/cpld_control.nml.IN +++ b/tests/parm/cpld_control.nml.IN @@ -192,6 +192,19 @@ deflate_level=1 lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] fscav_aero = @[FSCAV_AERO] + do_RRTMGP = @[DO_RRTMGP] + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] do_ca = @[DO_CA] ca_global = @[CA_GLOBAL] ca_sgs = @[CA_SGS] diff --git a/tests/parm/cpld_control_rrtmgp.nml.IN b/tests/parm/cpld_control_rrtmgp.nml.IN deleted file mode 100644 index 6c8d026b3c..0000000000 --- a/tests/parm/cpld_control_rrtmgp.nml.IN +++ /dev/null @@ -1,395 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. - max_output_fields = @[MAX_OUTPUT_FIELDS] -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = 3000000 - print_memory_usage = .false. -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - dz_min = @[DZ_MIN] - psm_bc = @[PSM_BC] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 42 - nudge_qv = .true. - nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 - d2_bg_k1 = @[D2_BG_K1] - d2_bg_k2 = @[D2_BG_K2] - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0. - dnats = @[DNATS] - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = @[DDDMP] - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = @[RES_LATLON_DYNAMICS] -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = @[FHZERO] - h2o_phys = .true. - ldiag3d = @[LDIAG3D] - qdiag3d = @[QDIAG3D] - print_diff_pgr = @[PRINT_DIFF_PGR] - fhcyc = @[FHCYC] - use_ufo = .true. - pre_rad = .false. - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = @[IALB] - iems = @[IEMS] - iaer = @[IAER] - icliq_sw = 2 - iovr = 3 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .true. - isatmedmf = 1 - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = @[RANDOM_CLDS] - trans_trac = .true. - cnvcld = @[CNVCLD] - imfshalcnv = @[IMFSHALCNV] - imfdeepcnv = @[IMFDEEPCNV] - ras = @[RAS] - cdmbgwd = @[CDMBWD] - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 - lsm = @[LSM] - iopt_dveg = @[IOPT_DVEG] - iopt_crs = @[IOPT_CRS] - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = @[IOPT_SFC] - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = @[IOPT_RAD] - iopt_alb = @[IOPT_ALB] - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = @[IOPT_STC] - debug = .false. - oz_phys = .false. - oz_phys_2015 = .true. - nstf_name = @[NSTF_NAME] - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = .true. - cplchm = @[CPLCHM] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - cplflx = @[CPLFLX] - cplice = @[CPLICE] - min_seaice = @[MIN_SEAICE] - use_cice_alb = @[USE_CICE_ALB] - frac_grid = @[FRAC_GRID] - effr_in = .true. - ldiag_ugwp = @[LDIAG_UGWP] - do_ugwp = .false. - do_tofd = .false. - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] - fscav_aero = @[FSCAV_AERO] - do_ca = @[DO_CA] - ca_global = @[CA_GLOBAL] - ca_sgs = @[CA_SGS] - nca = @[NCA] - ncells = @[NCELLS] - nlives = @[NLIVES] - nseed = @[NSEED] - nfracseed = @[NFRACSEED] - nthresh = @[NTHRESH] - ca_trigger = @[CA_TRIGGER] - nspinup = @[NSPINUP] - iseed_ca = @[ISEED_CA] - gwd_opt = @[GWD_OPT] - do_ugwp_v0 = @[DO_UGWP_V0] - do_ugwp_v1 = @[DO_UGWP_V1] - do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] - do_gsl_drag_ss = @[DO_GSL_DRAG_SS] - do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] - do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] - do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] - do_RRTMGP = .true. - active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 - lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' - lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' - sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' - sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' - rrtmgp_nGptsSW = 112 - rrtmgp_nGptsLW = 128 - rrtmgp_nBandsLW = 16 - rrtmgp_nBandsSW = 14 - doGP_cldoptics_LUT = .true. - doGP_lwscat = .true. - use_LW_jacobian = .false. -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = 2 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = @[FNALBC] - FNALBC2 = @[FNALBC2] - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' - FNTG3C = @[FNTG3C] - FNVEGC = @[FNVEGC] - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = @[FNMSKH] - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = @[FNVMNC] - FNVMXC = @[FNVMXC] - FNSLPC = @[FNSLPC] - FNABSC = @[FNABSC] - LDEBUG =.false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = @[LANDICE] - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = @[FSICL] - FSICS = 99999 - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy - STOCHINI=@[STOCHINI] - SKEBNORM=1 - SKEB_NPASS=30 - SKEB_VDOF=5 - SKEB=@[SKEB] - SKEB_TAU=2.16E4 - SKEB_LSCALE=1000.E3 - SKEBINT=1800 - SHUM=@[SHUM] - SHUM_TAU=21600 - SHUM_LSCALE=500000 - SHUMINT=3600 - SPPT=@[SPPT] - SPPT_TAU=21600 - SPPT_LSCALE=500000 - SPPT_LOGIT=.TRUE. - SPPT_SFCLIMIT=.TRUE. - SPPTINT=1800 - ISEED_SHUM=1 - ISEED_SKEB=2 - ISEED_SPPT=3 -/ - -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600 - LNDP_LSCALE=500000 - ISEED_LNDP=2010 - lndp_var_list = @[LNDP_VAR_LIST] - lndp_prt_list = @[LNDP_PRT_LIST] -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_version = @[KNOB_UGWP_VERSION] - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 2 - knob_ugwp_ndx4lh = 4 - knob_ugwp_palaunch = 275.0e2 - knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] - knob_ugwp_lzmax = 15.750e3 - knob_ugwp_lzmin = 0.75e3 - knob_ugwp_lzstar = 2.0e3 - knob_ugwp_taumin = 0.25e-3 - knob_ugwp_tauamp = 3.0e-3 - knob_ugwp_lhmet = 200.0e3 - knob_ugwp_orosolv = 'pss-1986' -/ - -&MOM_input_nml - output_directory = 'MOM6_OUTPUT/', - input_filename = '@[MOM6_RESTART_SETTING]' - restart_input_dir = 'INPUT/', - restart_output_dir = 'RESTART/', - parameter_filename = 'INPUT/MOM_input', - 'INPUT/MOM_override'/ - diff --git a/tests/parm/regional.nml.IN b/tests/parm/regional.nml.IN index ecd9b07835..8b564edc5c 100644 --- a/tests/parm/regional.nml.IN +++ b/tests/parm/regional.nml.IN @@ -198,6 +198,19 @@ bl_mynn_tkeadvect = .true. bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 + do_RRTMGP = @[DO_RRTMGP] + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] / &interpolator_nml diff --git a/tests/parm/regional_rrtmgp.nml.IN b/tests/parm/regional_rrtmgp.nml.IN deleted file mode 100644 index b220baaf1b..0000000000 --- a/tests/parm/regional_rrtmgp.nml.IN +++ /dev/null @@ -1,331 +0,0 @@ - &atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. -/ - - &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - - &fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - - &fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - - &fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 211 - npy = 193 - ntiles = 1, - npz = 60 - !grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .true. - reset_eta = .false. - n_sponge = 9 - nudge_qv = .false. - tau = 5.0 - rf_cutoff = 20.e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.04 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 300 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.15 - vtdm4 = 0.075 - delt_max = 0.008 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1.0 - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 10 - adjust_dry_mass = .false. - consv_te = 0. - do_sat_adj = .false. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 -!! nord_zs_filter = 4 - n_zs_filter = 0 - regional = .true. - bc_update_interval = 6 - regional_bcs_from_gsi = .false. - write_restart_with_bcs = @[WRITE_RESTART_WITH_BCS] - nrows_blend = 0 -/ - - &external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - - &gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - lradar = .true. - avg_max_length = 3600. - nsradar_reset = 3600. - ldiag_ugwp = .false. - do_ugwp = .false. - do_tofd = .false. - fhcyc = 0 - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - imp_physics = 8 - ltaerosol = .false. - ttendlim = -999.0 - pdfcld = .false. - fhswr = 900. - fhlwr = 900. - ialb = 1 - iems = 1 - IAER = 5111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - do_deep = .false. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - do_mynnedmf = .true. - do_mynnsfclay = .true. - lgfdlmprad = .false. - effr_in = .true. - random_clds = .true. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 2.0, 0.25 ! NCEP default - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - oz_phys = @[OZ_PHYS_OLD] - oz_phys_2015 = @[OZ_PHYS_NEW] - h2o_phys = @[H2O_PHYS] - nstf_name = 2,0,0,0,0 - cplflx = .false. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - icloud_bl = 1 - bl_mynn_tkeadvect = .true. - bl_mynn_edmf = 1 - bl_mynn_edmf_mom = 1 - do_RRTMGP = .true. - active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 - lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' - lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' - sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' - sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' - rrtmgp_nGptsSW = 112 - rrtmgp_nGptsLW = 128 - rrtmgp_nBandsLW = 16 - rrtmgp_nBandsSW = 14 - doGP_cldoptics_LUT = .true. - doGP_lwscat = .true. - use_LW_jacobian = .false. -/ - - &interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNALBC2 = "C96.facsf.tileX.nc", - FNALBC = "C96.snowfree_albedo.tileX.nc", - FNTG3C = "C96.substrate_temperature.tileX.nc", - FNVEGC = "C96.vegetation_greenness.tileX.nc", - FNVETC = "C96.vegetation_type.tileX.nc", - FNSOTC = "C96.soil_type.tileX.nc", - FNVMNC = "C96.vegetation_greenness.tileX.nc", - FNVMXC = "C96.vegetation_greenness.tileX.nc", - FNSLPC = "C96.slope_type.tileX.nc", - FNABSC = "C96.maximum_snow_albedo.tileX.nc", - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp" - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNSMCC = "global_soilmgldas.t1534.3072.1536.grb", - FNMSKH = "global_slmask.t1534.3072.1536.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ - - &gfdl_cloud_microphysics_nml - sedi_transport = .false. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 180. - tau_v2l = 90. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 90. -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/rt.conf b/tests/rt.conf index 6912ac2917..f8a2adbc6c 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -66,8 +66,9 @@ RUN | regional_hafs RUN | regional_netcdf_parallel | - wcoss2 | fv3 | RUN | regional_RRTMGP | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | +RUN | rap_rrtmgp | | fv3 | RUN | regional_spp_sppt_shum_skeb | | fv3 | # This test is not giving the same results (also not in REPRO mode) - needs to be fixed #RUN | rap_decomp | | | @@ -140,6 +141,7 @@ RUN | rap_sfcdiff_debug RUN | rap_flake_debug | | fv3 | RUN | rap_noah_sfcdiff_cires_ugwp_debug | | fv3 | RUN | rap_progcld_thompson_debug | | fv3 | +RUN | rap_progcld_thompson_rrtmgp_debug | | fv3 | RUN | rrfs_v1beta_debug | | fv3 | COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | diff --git a/tests/tests/control_p7_rrtmgp b/tests/tests/control_p7_rrtmgp index f2fc14b812..68265faa53 100644 --- a/tests/tests/control_p7_rrtmgp +++ b/tests/tests/control_p7_rrtmgp @@ -138,7 +138,7 @@ export LANDICE=".false." export FSICL=99999 #P7 -export IOPT_SFC=1 +export IOPT_SFC=3 #required for NML.IN sharing export USE_CICE_ALB=.false. @@ -146,11 +146,13 @@ export MIN_SEAICE=0.15 export FRAC_GRID=.true. export MOM6_RESTART_SETTING=n -# RRTMGP -export DO_RRTMGP=.true. - export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_p7_rrtmgp export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control_rrtmgp.nml.IN +export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export CCPP_SUITE=FV3_GFS_v16_p7_rrtmgp +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_rrtmgp b/tests/tests/control_rrtmgp index bb95ba9923..d755895072 100644 --- a/tests/tests/control_rrtmgp +++ b/tests/tests/control_rrtmgp @@ -30,8 +30,11 @@ export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 -export DO_RRTMGP=.true. - export FV3_RUN=control_run.IN +export INPUT_NML=control.nml.IN + +# RRTMGP export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export INPUT_NML=control_rrtmgp.nml.IN +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_rrtmgp_2threads b/tests/tests/control_rrtmgp_2threads index 19106c4386..1322e20219 100644 --- a/tests/tests/control_rrtmgp_2threads +++ b/tests/tests/control_rrtmgp_2threads @@ -26,8 +26,6 @@ export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 -export DO_RRTMGP=.true. - export THRD=2 export TASKS=$TASKS_thrd export TPN=$TPN_thrd @@ -36,5 +34,10 @@ export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 export FV3_RUN=control_run.IN +export INPUT_NML=control.nml.IN + +# RRTMGP export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export INPUT_NML=control_rrtmgp.nml.IN +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_rrtmgp_c192 b/tests/tests/control_rrtmgp_c192 index ace17585b4..fae337642a 100644 --- a/tests/tests/control_rrtmgp_c192 +++ b/tests/tests/control_rrtmgp_c192 @@ -36,13 +36,16 @@ export IMO=768 export JMO=384 export FHMAX=12 -export DO_RRTMGP=.true. - export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," export FV3_RUN=control_run.IN +export INPUT_NML=control.nml.IN + +# RRTMGP export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export INPUT_NML=control_rrtmgp.nml.IN +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_rrtmgp_debug b/tests/tests/control_rrtmgp_debug index 8f7f12921a..1950d679d6 100644 --- a/tests/tests/control_rrtmgp_debug +++ b/tests/tests/control_rrtmgp_debug @@ -27,8 +27,11 @@ export IAER=5111 export FHMAX=1 export OUTPUT_FH="0 1" -export DO_RRTMGP=.true. - export FV3_RUN=control_run.IN +export INPUT_NML=control.nml.IN + +# RRTMGP export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export INPUT_NML=control_rrtmgp.nml.IN +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/cpld_control_p7_rrtmgp b/tests/tests/cpld_control_p7_rrtmgp index 38b01f41b7..9c1dfa2213 100644 --- a/tests/tests/cpld_control_p7_rrtmgp +++ b/tests/tests/cpld_control_p7_rrtmgp @@ -70,6 +70,10 @@ export MIN_SEAICE=1.0e-11 export IOPT_SFC=1 export FV3_RUN=cpld_control_run.IN -export DO_RRTMGP=.true. +export INPUT_NML=cpld_control.nml.IN + +# RRTMGP export CCPP_SUITE=FV3_GFS_v16_coupled_p7_rrtmgp -export INPUT_NML=cpld_control_rrtmgp.nml.IN +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/rap_progcld_thompson_rrtmgp_debug b/tests/tests/rap_progcld_thompson_rrtmgp_debug new file mode 100644 index 0000000000..d5cb31f80e --- /dev/null +++ b/tests/tests/rap_progcld_thompson_rrtmgp_debug @@ -0,0 +1,67 @@ +############################################################################### +# +# RAP with Thompson's prognostic cloud scheme w/ RRTMGP debug test: atmosphere only at C96L127 in debug mode +# +############################################################################### + +export TEST_DESCR="Compare RAP debug with Thompson's prognostic cloud scheme w/ RRTMGPP results with previous trunk version" + +export CNTL_DIR=rap_progcld_thompson_rrtmgp_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export IAER=5111 +export FHMAX=1 +export OUTPUT_FH="0 1" +#export WRITE_DOPOST=.true. + +export FV3_RUN=control_run.IN +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export NEW_DIAGTABLE=diag_table_rap + +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export ICLOUD=3 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +# RRTMGP +export CCPP_SUITE=FV3_RAP_RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/rap_rrtmgp b/tests/tests/rap_rrtmgp new file mode 100644 index 0000000000..04e3e3dbca --- /dev/null +++ b/tests/tests/rap_rrtmgp @@ -0,0 +1,105 @@ +############################################################################### +# +# RAP control test with RRTMGP: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare RAP control results with previous trunk version" + +export CNTL_DIR=rap_rrtmgp + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 21 24' + +export FV3_RUN=control_run.IN +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export NEW_DIAGTABLE=diag_table_rap + +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +# RRTMGP +export CCPP_SUITE=FV3_RAP_RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/rap_rrtmgp_debug b/tests/tests/rap_rrtmgp_debug index 2f523b6755..e9b11e609f 100644 --- a/tests/tests/rap_rrtmgp_debug +++ b/tests/tests/rap_rrtmgp_debug @@ -29,18 +29,10 @@ export OUTPUT_FH="0 1" #export WRITE_DOPOST=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP_RRTMGP export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export NEW_DIAGTABLE=diag_table_rap -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. -export USE_LW_JACOBIAN=.true. -export DAMP_LW_FLUXADJ=.true. -export LFNC_K=3125. -export LFNC_P0=60000. export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. @@ -48,8 +40,6 @@ export LRADAR=.true. export LTAEROSOL=.true. export IALB=2 export IEMS=2 -export ICLIQ_SW=2 -export IOVR=3 export HYBEDMF=.false. export DO_MYNNEDMF=.true. export DO_MYNNSFCLAY=.true. @@ -68,3 +58,8 @@ export DO_GSL_DRAG_TOFD=.true. export DO_UGWP_V1=.false. export DO_UGWP_V1_OROG_ONLY=.false. +# RRTMGP +export CCPP_SUITE=FV3_RAP_RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. diff --git a/tests/tests/regional_RRTMGP b/tests/tests/regional_RRTMGP index be7d440276..1044112e91 100644 --- a/tests/tests/regional_RRTMGP +++ b/tests/tests/regional_RRTMGP @@ -18,7 +18,6 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF24" export_fv3 -export DO_RRTMGP=.true. export TASKS=68 export FV3_RUN=regional_run.IN @@ -30,8 +29,7 @@ export HYBEDMF=.false. export WRITE_DOPOST=.true. export POSTAPP='lam' -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_RRTMGP -export INPUT_NML=regional_rrtmgp.nml.IN +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 @@ -39,3 +37,9 @@ export FIELD_TABLE=field_table_regional export INPES=10 export JNPES=6 export OUTPUT_FH="12 -1" + +# RRTMGP +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file From 06df5fe5779d12f97a1c9ac46e7dcfc477160754 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 8 Mar 2022 22:29:39 +0000 Subject: [PATCH 05/57] Updated FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index f78c863153..3d46ba41d0 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit f78c863153f04ef253527e4c7eeffe60de4ae896 +Subproject commit 3d46ba41d0cf2da6def3c5bb8edfe3376bf1b683 From dabaa01bf07dcb23506a58d69bd29c4e222ca7b0 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 9 Mar 2022 18:15:04 +0000 Subject: [PATCH 06/57] Replaced cld_mynn_ naming convention with cld_pbl_ --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 3d46ba41d0..d7bc9c3834 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 3d46ba41d0cf2da6def3c5bb8edfe3376bf1b683 +Subproject commit d7bc9c383427f23c7f5c0a7677c9413f791d80ea From 5f2dac1ee91479d8e122ad8982f03e7036880425 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 9 Mar 2022 21:27:31 +0000 Subject: [PATCH 07/57] Updated FV3/ccpp-physics --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index d7bc9c3834..5eb3d66f1c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d7bc9c383427f23c7f5c0a7677c9413f791d80ea +Subproject commit 5eb3d66f1c49c14c6fa045056579b302497cb1d4 From 37186c1bbe22dc7d507a5b12117eaadebbed3ea9 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 9 Mar 2022 21:34:27 +0000 Subject: [PATCH 08/57] Updated FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 5eb3d66f1c..8fc9dae931 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 5eb3d66f1c49c14c6fa045056579b302497cb1d4 +Subproject commit 8fc9dae931a1dd89b1083d3c7401a4038e52fe1c From 4c67909572dd06b7b03dc6bafc797cb60a3c7f6c Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 9 Mar 2022 22:06:39 +0000 Subject: [PATCH 09/57] Some more cleanup of cloud-fraction... --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 8fc9dae931..509551854f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 8fc9dae931a1dd89b1083d3c7401a4038e52fe1c +Subproject commit 509551854f6f2c857c232464f5d885bbf7c09e76 From 31a9a1840f7314a81c203f8cb31868ab0ec731f4 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Fri, 11 Mar 2022 19:12:40 +0000 Subject: [PATCH 10/57] Pulled in Qingfu's changes to ccpp-physics --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 509551854f..87326696ce 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 509551854f6f2c857c232464f5d885bbf7c09e76 +Subproject commit 87326696ce1e07df82687780af6a938eb6c539e9 From f8fa9236149c619f5e35580ee6013f63082402d3 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Fri, 11 Mar 2022 19:28:29 +0000 Subject: [PATCH 11/57] Updated FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 87326696ce..2cecc3a80c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 87326696ce1e07df82687780af6a938eb6c539e9 +Subproject commit 2cecc3a80c4dbc7c8f16fab33dc1f8830b97bb1d From e34219481367f5653f98db78dc64ff5e24fbff64 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 15 Mar 2022 16:11:18 +0000 Subject: [PATCH 12/57] New RT's for RRTMGP p8. Revert change in ccpp-physics --- FV3 | 2 +- tests/parm/cpld_control_p7.nml.IN | 13 +++ tests/rt.conf | 10 +- tests/tests/control_p7_rrtmgp | 2 +- tests/tests/control_p8_rrtmgp | 166 +++++++++++++++++++++++++++++ tests/tests/cpld_control_p7_rrtmgp | 2 +- tests/tests/cpld_control_p8_rrtmgp | 92 ++++++++++++++++ 7 files changed, 279 insertions(+), 8 deletions(-) create mode 100644 tests/tests/control_p8_rrtmgp create mode 100644 tests/tests/cpld_control_p8_rrtmgp diff --git a/FV3 b/FV3 index 2cecc3a80c..d2cb6c25d3 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 2cecc3a80c4dbc7c8f16fab33dc1f8830b97bb1d +Subproject commit d2cb6c25d3473b9a2b82a5329a9b8cf69c3de9ef diff --git a/tests/parm/cpld_control_p7.nml.IN b/tests/parm/cpld_control_p7.nml.IN index 2635b779b3..8d40a2ed75 100644 --- a/tests/parm/cpld_control_p7.nml.IN +++ b/tests/parm/cpld_control_p7.nml.IN @@ -189,6 +189,19 @@ deflate_level=1 do_sppt = @[DO_SPPT] do_shum = @[DO_SHUM] do_skeb = @[DO_SKEB] + do_RRTMGP = @[DO_RRTMGP] + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] fscav_aero = @[FSCAV_AERO] diff --git a/tests/rt.conf b/tests/rt.conf index 1dbf1da0de..dd9b7a0d8a 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -2,13 +2,13 @@ # S2S tests # ################################################################################################################################################################################### -COMPILE | -DAPP=S2SW -DUFS_GOCART=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 | - wcoss_cray | fv3 | +COMPILE | -DAPP=S2SW -DUFS_GOCART=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp | - wcoss_cray | fv3 | RUN | cpld_control_p8 | - wcoss_cray | fv3 | RUN | cpld_2threads_p8 | - wcoss_cray | | RUN | cpld_decomp_p8 | - wcoss_cray jet.intel | | RUN | cpld_mpi_p8 | - wcoss_cray | | RUN | cpld_control_p7_rrtmgp | - wcoss_cray | fv3 | - +RUN | cpld_control_p8_rrtmgp | - wcoss_cray | fv3 | RUN | cpld_bmark_p7 | - wcoss_cray | fv3 | RUN | cpld_bmark_p8 | - wcoss_cray jet.intel | fv3 | @@ -30,8 +30,7 @@ RUN | cpld_debug_p8 ################################################################################################################################################################################### # PROD tests # ################################################################################################################################################################################### - -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8 -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp -D32BIT=ON | | fv3 | RUN | control | | fv3 | RUN | control_decomp | | | RUN | control_2dwrtdecomp | | | @@ -57,6 +56,7 @@ RUN | control_restart_p8 RUN | control_decomp_p8 | | | RUN | control_2threads_p8 | - wcoss_cray | | RUN | control_p7_rrtmgp | | fv3 | +RUN | control_p8_rrtmgp | | fv3 | RUN | regional_control | | fv3 | RUN | regional_restart | | | regional_control @@ -67,7 +67,7 @@ RUN | regional_hafs RUN | regional_netcdf_parallel | - wcoss2 | fv3 | RUN | regional_RRTMGP | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | RUN | rap_rrtmgp | | fv3 | diff --git a/tests/tests/control_p7_rrtmgp b/tests/tests/control_p7_rrtmgp index 8992efc89a..b190c8cd5b 100644 --- a/tests/tests/control_p7_rrtmgp +++ b/tests/tests/control_p7_rrtmgp @@ -153,7 +153,7 @@ export MOM6_RESTART_SETTING=n export FV3_RUN=control_run.IN export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=cpld_control_p7.nml.IN # RRTMGP export CCPP_SUITE=FV3_GFS_v16_p7_rrtmgp diff --git a/tests/tests/control_p8_rrtmgp b/tests/tests/control_p8_rrtmgp new file mode 100644 index 0000000000..4bd77a2424 --- /dev/null +++ b/tests/tests/control_p8_rrtmgp @@ -0,0 +1,166 @@ +############################################################################### +# +# Global control test GFSv16 atmosphere only at C96L127, P8 configuration +# +############################################################################### + +export TEST_DESCR="Compare global control results with previous trunk version" + +export CNTL_DIR=control_p8_rrtmgp + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export WRITE_DOPOST=.true. +export OUTPUT_FH='0 21 24' + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +# P8 +export IOPT_SFC=3 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +export LHEATSTRG=.true. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=2 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8_rrtmgp +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_gfsv16_merra2 +# use same namelist for standalone,coupled P7 +export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/cpld_control_p7_rrtmgp b/tests/tests/cpld_control_p7_rrtmgp index 4270ea0c10..2835ba56b6 100644 --- a/tests/tests/cpld_control_p7_rrtmgp +++ b/tests/tests/cpld_control_p7_rrtmgp @@ -81,7 +81,7 @@ export CDMBWD='1.0,2.2,1.0,1.0' export DIAG_TABLE=diag_table_template export FV3_RUN=cpld_control_run.IN -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=cpld_control_p7.nml.IN # RRTMGP export CCPP_SUITE=FV3_GFS_v16_coupled_p7_rrtmgp diff --git a/tests/tests/cpld_control_p8_rrtmgp b/tests/tests/cpld_control_p8_rrtmgp new file mode 100644 index 0000000000..9409cd1d22 --- /dev/null +++ b/tests/tests/cpld_control_p8_rrtmgp @@ -0,0 +1,92 @@ +# +# cpld_control P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3-RRTMGP system - C96MX100" + +export CNTL_DIR="cpld_control_p8_rrtmgp" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + 20210323.060000.out_grd.glo_1deg \ + 20210323.060000.out_pnt.points \ + 20210323.060000.restart.glo_1deg" + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART + +export eps_imesh=2.5e-1 + +export FV3_RUN=cpld_control_run.IN + +# RRTMGP +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_rrtmgp +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. From a02c0c63617b5128cbdcc4ba942c391e88bd2feb Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Mon, 21 Mar 2022 17:27:57 +0000 Subject: [PATCH 13/57] Changed arguments to implied shape. in ccpp-physics --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index d2cb6c25d3..769f957ea6 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d2cb6c25d3473b9a2b82a5329a9b8cf69c3de9ef +Subproject commit 769f957ea6270ef66066340b579175a9eb47bd7b From 4ad14ac189dae82de1c151f04793290aa730cb36 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 22 Mar 2022 20:06:13 +0000 Subject: [PATCH 14/57] Updated RRTMGP regression tests --- tests/rt.conf | 4 +- tests/tests/cpld_bmark_p7_rrtmgp | 171 +++++++++++++++++++++++++++++++ 2 files changed, 173 insertions(+), 2 deletions(-) create mode 100644 tests/tests/cpld_bmark_p7_rrtmgp diff --git a/tests/rt.conf b/tests/rt.conf index d8c5eb693a..5099cffe74 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -7,10 +7,10 @@ RUN | cpld_control_p8 RUN | cpld_2threads_p8 | - wcoss_cray | | RUN | cpld_decomp_p8 | - wcoss_cray jet.intel | | RUN | cpld_mpi_p8 | - wcoss_cray | | -RUN | cpld_control_p7_rrtmgp | - wcoss_cray | fv3 | RUN | cpld_control_p8_rrtmgp | - wcoss_cray | fv3 | RUN | cpld_bmark_p7 | - wcoss_cray | fv3 | +RUN | cpld_bmark_p7_rrtmgp | - wcoss_cray | fv3 | RUN | cpld_bmark_p8 | - wcoss_cray jet.intel | fv3 | # Waves off for restart and debug tests @@ -56,7 +56,7 @@ RUN | control_restart_p8 RUN | control_decomp_p8 | | | RUN | control_2threads_p8 | - wcoss_cray | | RUN | control_p7_rrtmgp | | fv3 | -RUN | control_p8_rrtmgp | | fv3 | +RUN | control_p8_rrtmgp | | fv3 | RUN | regional_control | | fv3 | RUN | regional_restart | | | regional_control diff --git a/tests/tests/cpld_bmark_p7_rrtmgp b/tests/tests/cpld_bmark_p7_rrtmgp new file mode 100644 index 0000000000..785826d6bd --- /dev/null +++ b/tests/tests/cpld_bmark_p7_rrtmgp @@ -0,0 +1,171 @@ +# +# cpld_bmark_p7_rrtmgp test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3-RRTMGP system - C384L127 MX025 - Benchmark P7 test" + +export CNTL_DIR="cpld_bmark_p7_rrtmgp" + +export LIST_FILES="sfcf006.nc \ + atmf006.nc \ + 20130401.060000.out_grd.gwes_30m \ + 20130401.060000.out_pnt.points \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-01-21600.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc" + +export_fv3 +export_cpl + +export SYEAR=2013 +export SMONTH=04 +export SDAY=01 +export SHOUR=00 +export SECS=`expr $SHOUR \* 3600` +export BMIC=.true. + +export DAYS=0.25 +export FHMAX=6 +export RESTART_N=`expr ${FHMAX} - ${FHROT}` +export RESTART_INTERVAL="${RESTART_N} -1" + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk +export wav_petlist_bounds=$WPB_cpl_bmrk + +# atm/ocn/ice resolution +export ATMRES=C384 +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 +export OUTPUT_GRID="'gaussian_grid'" +export ATMTILESIZE=`expr $NPX - 1` + +export OCNRES=025 +export ICERES=0.25 +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE=$NPROC_ICE_cpl_bmrk +export np2=`expr $NPROC_ICE / 2` +export BLCKX=`expr $NX_GLB / $np2` +export BLCKY=`expr $NY_GLB / 2` + +# set component and coupling timesteps +export DT_ATMOS=300 +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6=900 +export DT_THERM_MOM6=1800 + +# nems.configure +export NEMS_CONFIGURE=nems.configure.cpld_wave.IN +export coupling_interval_slow_sec=${DT_THERM_MOM6} +export coupling_interval_fast_sec=${DT_ATMOS} + +# resolution dependent files +export MOM_INPUT=MOM_input_template_${OCNRES} +export MESHOCN_ICE=mesh.mx${OCNRES}.nc +export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc +export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc + +export FNALBC="'C384.snowfree_albedo.tileX.nc'" +export FNALBC2="'C384.facsf.tileX.nc'" +export FNTG3C="'C384.substrate_temperature.tileX.nc'" +export FNVEGC="'C384.vegetation_greenness.tileX.nc'" +export FNVETC="'C384.vegetation_type.tileX.nc'" +export FNSOTC="'C384.soil_type.tileX.nc'" +export FNVMNC="'C384.vegetation_greenness.tileX.nc'" +export FNVMXC="'C384.vegetation_greenness.tileX.nc'" +export FNSLPC="'C384.slope_type.tileX.nc'" +export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" + +export MOM6_RIVER_RUNOFF=True +export MOM6_RESTART_SETTING=r + +#P7 +export USE_CICE_ALB=.false. +export MIN_SEAICE=1.0e-11 +export IOPT_SFC=1 +export DNATS=1 +export IMP_PHYSICS=11 +export FIELD_TABLE=field_table_gfsv16 +export LGFDLMPRAD=.true. +export KNOB_UGWP_VERSION=1 +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export FSICL=99999 +export FSICS=99999 +export DO_SAT_ADJ=.true. +export CDMBWD='1.0,2.2,1.0,1.0' +export DZ_MIN=2 +export WRITE_NSFLIP=.false. +export FV3BMIC='gfs_p7' + +export WW3GRIDLINE="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export WW3RSTDTHR=${FHMAX} +export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" +export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" +export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" +export OUT_BEG=$RUN_BEG +export OUT_END=$RUN_END +export RST_BEG=$RUN_BEG +export RST_2_BEG=$RUN_BEG +export RST_END=$RUN_END +export RST_2_END=$RUN_END + +export DIAG_TABLE=diag_table_template + +export FV3_RUN=cpld_control_run.IN +export INPUT_NML=cpld_control_p7.nml.IN + +# RRTMGP +export CCPP_SUITE=FV3_GFS_v16_coupled_p7_rrtmgp +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file From 05ed947e850bb7e04c49a84aa1997880d07689a4 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 22 Mar 2022 20:06:43 +0000 Subject: [PATCH 15/57] Changes to FV3/ccpp-physics. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 769f957ea6..d83c02d93a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 769f957ea6270ef66066340b579175a9eb47bd7b +Subproject commit d83c02d93a5129599ea7db385565755726b63098 From a0e7b1159d04c1dd2f85cb9c608af19f0ccc086f Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 22 Mar 2022 20:10:23 +0000 Subject: [PATCH 16/57] Synced FV3 and submodules with origin --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index d83c02d93a..13942f821c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d83c02d93a5129599ea7db385565755726b63098 +Subproject commit 13942f821c13dd83cf94d3dffefc99a64d15065d From 0320b9e255320557f173efd2986d1c778b533f2c Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 22 Mar 2022 20:13:10 +0000 Subject: [PATCH 17/57] Updated WW3 submodule. --- WW3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WW3 b/WW3 index bba5df06c0..32fc086cd4 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit bba5df06c06df7528113ceccf3cca5b2ba8cb9ff +Subproject commit 32fc086cd4d0dcb61ea55af37a08f27af0f14006 From b9c74466d7ec52f77cf1cb9df179e59fd9b5ccb6 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 22 Mar 2022 20:16:01 +0000 Subject: [PATCH 18/57] Fixed WW3 submodule. --- WW3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WW3 b/WW3 index 32fc086cd4..a6dd6db7da 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 32fc086cd4d0dcb61ea55af37a08f27af0f14006 +Subproject commit a6dd6db7da706e520eae45611bfa52c5324fef84 From 16fd9cff25b7ddfa427d370df2487af3918002bc Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 22 Mar 2022 23:21:59 +0000 Subject: [PATCH 19/57] RRTMGP RT cleanup, again. Bug-fix in FV3/ccpp-physics --- FV3 | 2 +- tests/rt.conf | 2 +- tests/tests/cpld_bmark_p8_rrtmgp | 161 +++++++++++++++++++++++++++++++ 3 files changed, 163 insertions(+), 2 deletions(-) create mode 100644 tests/tests/cpld_bmark_p8_rrtmgp diff --git a/FV3 b/FV3 index 13942f821c..c41c3da8d7 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 13942f821c13dd83cf94d3dffefc99a64d15065d +Subproject commit c41c3da8d7eb23039bc91f6eab4558941b15d711 diff --git a/tests/rt.conf b/tests/rt.conf index dd6e789fe6..163f1ce30d 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -7,11 +7,11 @@ RUN | cpld_control_p8 RUN | cpld_2threads_p8 | - wcoss_cray | | RUN | cpld_decomp_p8 | - wcoss_cray jet.intel | | RUN | cpld_mpi_p8 | - wcoss_cray | | -RUN | cpld_control_p8_rrtmgp | - wcoss_cray | fv3 | RUN | cpld_bmark_p7 | - wcoss_cray | fv3 | RUN | cpld_bmark_p7_rrtmgp | - wcoss_cray | fv3 | RUN | cpld_bmark_p8 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_bmark_p8_rrtmgp | - wcoss_cray jet.intel | fv3 | # Waves off for restart and debug tests RUN | cpld_control_c96_p8 | - wcoss_cray | fv3 | diff --git a/tests/tests/cpld_bmark_p8_rrtmgp b/tests/tests/cpld_bmark_p8_rrtmgp new file mode 100644 index 0000000000..86d947001a --- /dev/null +++ b/tests/tests/cpld_bmark_p8_rrtmgp @@ -0,0 +1,161 @@ +# +# cpld_bmark_p8_rrtmgp test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-GOCART-WW3-RRTMGP system - C384L127 MX025 - Benchmark P8 test" + +export CNTL_DIR="cpld_bmark_p8_rrtmgp" + +export LIST_FILES="sfcf006.nc \ + atmf006.nc \ + gocart.inst_aod.20130401_0600z.nc4 \ + 20130401.060000.out_grd.gwes_30m \ + 20130401.060000.out_pnt.points \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-01-21600.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc" + +export_fv3 +export_cpl + +export SYEAR=2013 +export SMONTH=04 +export SDAY=01 +export SHOUR=00 +export SECS=`expr $SHOUR \* 3600` +export BMIC=.true. + +export DAYS=0.25 +export FHMAX=6 +export RESTART_N=`expr ${FHMAX} - ${FHROT}` +export RESTART_INTERVAL="${RESTART_N} -1" + +export WLCLK=45 + +export DOMAINS_STACK_SIZE=16000000 + +export TASKS=$TASKS_cpl_bmrk_aero +export TPN=$TPN_cpl_bmrk_aero +export INPES=$INPES_cpl_bmrk_aero +export JNPES=$JNPES_cpl_bmrk_aero +export THRD=$THRD_cpl_bmrk_aero +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk_aero + +export med_petlist_bounds=$MPB_cpl_bmrk_aero +export atm_petlist_bounds=$APB_cpl_bmrk_aero +export chm_petlist_bounds=$CHM_cpl_bmrk_aero +export ocn_petlist_bounds=$OPB_cpl_bmrk_aero +export ice_petlist_bounds=$IPB_cpl_bmrk_aero +export wav_petlist_bounds=$WPB_cpl_bmrk_aero + +# atm/ocn/ice resolution +export ATMRES=C384 +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 +export OUTPUT_GRID="'gaussian_grid'" +export ATMTILESIZE=`expr $NPX - 1` + +export OCNRES=025 +export ICERES=0.25 +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE=$NPROC_ICE_cpl_bmrk_aero +export np2=`expr $NPROC_ICE / 2` +export BLCKX=`expr $NX_GLB / $np2` +export BLCKY=`expr $NY_GLB / 2` + +# set component and coupling timesteps +export DT_ATMOS=300 +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6=900 +export DT_THERM_MOM6=1800 + +export CPLCHM=.true. + +# nems.configure +export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN +export coupling_interval_slow_sec=${DT_THERM_MOM6} +export coupling_interval_fast_sec=${DT_ATMOS} + +# resolution dependent files +export MOM_INPUT=MOM_input_template_${OCNRES} +export MESHOCN_ICE=mesh.mx${OCNRES}.nc +export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc +export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc + +export FNALBC="'C384.snowfree_albedo.tileX.nc'" +export FNALBC2="'C384.facsf.tileX.nc'" +export FNTG3C="'C384.substrate_temperature.tileX.nc'" +export FNVEGC="'C384.vegetation_greenness.tileX.nc'" +export FNVETC="'C384.vegetation_type.tileX.nc'" +export FNSOTC="'C384.soil_type.tileX.nc'" +export FNVMNC="'C384.vegetation_greenness.tileX.nc'" +export FNVMXC="'C384.vegetation_greenness.tileX.nc'" +export FNSLPC="'C384.slope_type.tileX.nc'" +export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" + +export CDMBWD=${CDMBWD_c384} +export DT_INNER=${DT_INNER_c384} + +export MOM6_RIVER_RUNOFF=True +export MOM6_RESTART_SETTING=r + +export WW3GRIDLINE="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export WW3RSTDTHR=${FHMAX} +export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" +export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" +export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" +export OUT_BEG=$RUN_BEG +export OUT_END=$RUN_END +export RST_BEG=$RUN_BEG +export RST_2_BEG=$RUN_BEG +export RST_END=$RUN_END +export RST_2_END=$RUN_END + +export FV3_RUN=cpld_control_run.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART + +# RRTMGP +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_rrtmgp +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. \ No newline at end of file From 88e94c8d543b05144e2b8bbbb3736c45fba357dc Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Mon, 4 Apr 2022 18:09:05 +0000 Subject: [PATCH 20/57] Update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index c41c3da8d7..9bb8464be2 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c41c3da8d7eb23039bc91f6eab4558941b15d711 +Subproject commit 9bb8464be2a3261208c695d6b73e557ad1053202 From 867010c11d46ad5a97e9502a053b8078cefd7386 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Mon, 4 Apr 2022 21:50:27 +0000 Subject: [PATCH 21/57] Updated FV3. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 9bb8464be2..94554fbe9c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 9bb8464be2a3261208c695d6b73e557ad1053202 +Subproject commit 94554fbe9cef6a4af8b90f6f012ea0d9bb2c4a79 From a4a67b32d353a6794c9581b25f0fe546b52053a6 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 5 Apr 2022 08:28:39 -0600 Subject: [PATCH 22/57] Update .gitmodules. --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 2a25ef9061..96cc19a5e2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,7 @@ [submodule "FV3"] path = FV3 url = https://github.com/dustinswales/fv3atm - branch = enhanced_GP2cld_coupling + branch = enhanced_GP2cld_coupling_tight [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 From 11f83637b2cade4c03294f4da4d578ffe067d7f7 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 5 Apr 2022 08:32:29 -0600 Subject: [PATCH 23/57] Updated FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 94554fbe9c..d6de491963 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 94554fbe9cef6a4af8b90f6f012ea0d9bb2c4a79 +Subproject commit d6de4919630f70f9c6e47ccda2f38b27257e4eaf From 2f61652a294321555e7e143ff649094483fe856a Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 5 Apr 2022 09:02:21 -0600 Subject: [PATCH 24/57] Updated atmos_cubed_sphere submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index d6de491963..0ae75e5c8d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d6de4919630f70f9c6e47ccda2f38b27257e4eaf +Subproject commit 0ae75e5c8dff1e2a24bf90303621d543a3dbe8c3 From c98b78d957b5d0d52d4eb58f6963521fe74afd95 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 5 Apr 2022 09:46:16 -0600 Subject: [PATCH 25/57] Revert changes to names in FV3/ccpp-physics --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 0ae75e5c8d..93d5a0f038 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 0ae75e5c8dff1e2a24bf90303621d543a3dbe8c3 +Subproject commit 93d5a0f038424eba27fb01415d8047dc3e609a05 From c320814839a7c26a88e89b77787e323455cb6fea Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 5 Apr 2022 09:56:23 -0600 Subject: [PATCH 26/57] Synced FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 93d5a0f038..15871fdec5 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 93d5a0f038424eba27fb01415d8047dc3e609a05 +Subproject commit 15871fdec5ee504a9cd1956bb1fe0a81423d7772 From b09f511a31337773b0660e8b1b0b36a40c3b7b79 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 5 Apr 2022 10:35:52 -0600 Subject: [PATCH 27/57] Updated baseline date in rt.sh --- tests/rt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.sh b/tests/rt.sh index 763d368cd5..5960ddc43b 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -485,7 +485,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20220401 +BL_DATE=20220405 if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]] || [[ $MACHINE_ID = s4.* ]]; then RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} else From a4cf5715442776e1107ca8747cc3fb09ff5a91d7 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 5 Apr 2022 14:30:05 -0500 Subject: [PATCH 28/57] [AutoRT] orion.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_orion.intel.log | 1717 ++++++++++++++----------- 1 file changed, 935 insertions(+), 782 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index d3c645571d..0023b5d40f 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,24 +1,24 @@ -Mon Apr 4 10:31:53 CDT 2022 +Tue Apr 5 13:10:51 CDT 2022 Start Regression test -Compile 001 elapsed time 467 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 229 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 358 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 345 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 354 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 308 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 180 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 175 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 172 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 396 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 408 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 191 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 100 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 405 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_control_p8 +Compile 001 elapsed time 470 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 226 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 358 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 336 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 187 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 169 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 170 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 394 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 401 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 211 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 103 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 330 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 347.312163 - 0: The maximum resident set size (KB) = 1137808 + 0: The total amount of wall time = 371.851350 + 0: The maximum resident set size (KB) = 1137100 Test 001 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 438.329116 - 0: The maximum resident set size (KB) = 1713700 + 0: The total amount of wall time = 451.212159 + 0: The maximum resident set size (KB) = 1714568 Test 002 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 349.771310 - 0: The maximum resident set size (KB) = 1131552 + 0: The total amount of wall time = 373.111951 + 0: The maximum resident set size (KB) = 1128436 Test 003 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -267,27 +267,19 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 294.775424 - 0: The maximum resident set size (KB) = 1045100 + 0: The total amount of wall time = 304.778891 + 0: The maximum resident set size (KB) = 1049392 Test 004 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p7_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_control_p7_rrtmgp -Checking test 005 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_bmark_p7 +Checking test 005 cpld_bmark_p7 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -321,21 +313,21 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/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_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 262.072293 - 0: The maximum resident set size (KB) = 666480 + 0: The total amount of wall time = 978.659399 + 0: The maximum resident set size (KB) = 1209148 -Test 005 cpld_control_p7_rrtmgp PASS +Test 005 cpld_bmark_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_bmark_p7 -Checking test 006 cpld_bmark_p7 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_bmark_p7_rrtmgp +Checking test 006 cpld_bmark_p7_rrtmgp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -379,14 +371,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 893.427198 - 0: The maximum resident set size (KB) = 1236060 + 0: The total amount of wall time = 1001.198869 + 0: The maximum resident set size (KB) = 1367808 -Test 006 cpld_bmark_p7 PASS +Test 006 cpld_bmark_p7_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -432,15 +424,68 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1283.130614 - 0: The maximum resident set size (KB) = 2839316 + 0: The total amount of wall time = 1217.514101 + 0: The maximum resident set size (KB) = 2840740 Test 007 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_control_c96_p8 -Checking test 008 cpld_control_c96_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_bmark_p8_rrtmgp +Checking test 008 cpld_bmark_p8_rrtmgp results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + + 0: The total amount of wall time = 1295.064567 + 0: The maximum resident set size (KB) = 3029940 + +Test 008 cpld_bmark_p8_rrtmgp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_control_c96_p8 +Checking test 009 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -502,15 +547,15 @@ Checking test 008 cpld_control_c96_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 = 337.996731 - 0: The maximum resident set size (KB) = 1148796 + 0: The total amount of wall time = 375.385351 + 0: The maximum resident set size (KB) = 1150136 -Test 008 cpld_control_c96_p8 PASS +Test 009 cpld_control_c96_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_restart_c96_p8 -Checking test 009 cpld_restart_c96_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_restart_c96_p8 +Checking test 010 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -560,15 +605,15 @@ Checking test 009 cpld_restart_c96_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 = 198.001521 - 0: The maximum resident set size (KB) = 1101980 + 0: The total amount of wall time = 230.928769 + 0: The maximum resident set size (KB) = 1119396 -Test 009 cpld_restart_c96_p8 PASS +Test 010 cpld_restart_c96_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_control_c192_p8 -Checking test 010 cpld_control_c192_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_control_c192_p8 +Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -618,15 +663,15 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1481.041304 - 0: The maximum resident set size (KB) = 1592024 + 0: The total amount of wall time = 1500.437219 + 0: The maximum resident set size (KB) = 1591996 -Test 010 cpld_control_c192_p8 PASS +Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_restart_c192_p8 -Checking test 011 cpld_restart_c192_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_restart_c192_p8 +Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -676,15 +721,15 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1105.649615 - 0: The maximum resident set size (KB) = 1781256 + 0: The total amount of wall time = 1450.564878 + 0: The maximum resident set size (KB) = 1783160 -Test 011 cpld_restart_c192_p8 PASS +Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_control_c384_p8 -Checking test 012 cpld_control_c384_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_control_c384_p8 +Checking test 013 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -727,15 +772,15 @@ Checking test 012 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1208.166284 - 0: The maximum resident set size (KB) = 2827548 + 0: The total amount of wall time = 1310.087894 + 0: The maximum resident set size (KB) = 2826340 -Test 012 cpld_control_c384_p8 PASS +Test 013 cpld_control_c384_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_restart_c384_p8 -Checking test 013 cpld_restart_c384_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_restart_c384_p8 +Checking test 014 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -778,15 +823,15 @@ Checking test 013 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 772.017237 - 0: The maximum resident set size (KB) = 2759992 + 0: The total amount of wall time = 912.510293 + 0: The maximum resident set size (KB) = 2796100 -Test 013 cpld_restart_c384_p8 PASS +Test 014 cpld_restart_c384_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_debug_p8 -Checking test 014 cpld_debug_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -836,15 +881,15 @@ Checking test 014 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1066.667762 - 0: The maximum resident set size (KB) = 1268004 + 0: The total amount of wall time = 1132.613968 + 0: The maximum resident set size (KB) = 1293704 -Test 014 cpld_debug_p8 PASS +Test 015 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control -Checking test 015 control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control +Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -890,15 +935,15 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 130.851710 - 0: The maximum resident set size (KB) = 467360 + 0: The total amount of wall time = 135.053137 + 0: The maximum resident set size (KB) = 467248 -Test 015 control PASS +Test 016 control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_decomp -Checking test 016 control_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_decomp +Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -940,29 +985,29 @@ Checking test 016 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 135.425544 - 0: The maximum resident set size (KB) = 466960 + 0: The total amount of wall time = 139.724850 + 0: The maximum resident set size (KB) = 467972 -Test 016 control_decomp PASS +Test 017 control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_2dwrtdecomp -Checking test 017 control_2dwrtdecomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_2dwrtdecomp +Checking test 018 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 125.285525 - 0: The maximum resident set size (KB) = 463504 + 0: The total amount of wall time = 129.299877 + 0: The maximum resident set size (KB) = 469028 -Test 017 control_2dwrtdecomp PASS +Test 018 control_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_2threads -Checking test 018 control_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_2threads +Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1004,15 +1049,15 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.653163 - 0: The maximum resident set size (KB) = 518396 + 0: The total amount of wall time = 157.630060 + 0: The maximum resident set size (KB) = 519644 -Test 018 control_2threads PASS +Test 019 control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_restart -Checking test 019 control_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_restart +Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1050,15 +1095,15 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 70.343768 - 0: The maximum resident set size (KB) = 209796 + 0: The total amount of wall time = 70.244328 + 0: The maximum resident set size (KB) = 209268 -Test 019 control_restart PASS +Test 020 control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_fhzero -Checking test 020 control_fhzero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_fhzero +Checking test 021 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1100,15 +1145,15 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 125.283004 - 0: The maximum resident set size (KB) = 465004 + 0: The total amount of wall time = 127.583725 + 0: The maximum resident set size (KB) = 467124 -Test 020 control_fhzero PASS +Test 021 control_fhzero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1134,15 +1179,15 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.547498 - 0: The maximum resident set size (KB) = 466676 + 0: The total amount of wall time = 142.095836 + 0: The maximum resident set size (KB) = 464264 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_latlon -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_latlon -Checking test 022 control_latlon results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_latlon +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_latlon +Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1152,15 +1197,15 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 130.385826 - 0: The maximum resident set size (KB) = 470572 + 0: The total amount of wall time = 141.220403 + 0: The maximum resident set size (KB) = 465456 -Test 022 control_latlon PASS +Test 023 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1170,15 +1215,15 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.195541 - 0: The maximum resident set size (KB) = 468872 + 0: The total amount of wall time = 141.104718 + 0: The maximum resident set size (KB) = 469656 -Test 023 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_c48 -Checking test 024 control_c48 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_c48 +Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1216,15 +1261,15 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 322.114227 -0: The maximum resident set size (KB) = 654204 +0: The total amount of wall time = 321.811854 +0: The maximum resident set size (KB) = 654136 -Test 024 control_c48 PASS +Test 025 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_c192 -Checking test 025 control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_c192 +Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1234,15 +1279,15 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 489.176148 - 0: The maximum resident set size (KB) = 563584 + 0: The total amount of wall time = 511.684879 + 0: The maximum resident set size (KB) = 564232 -Test 025 control_c192 PASS +Test 026 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_c384 -Checking test 026 control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_c384 +Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1252,15 +1297,15 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 812.221029 - 0: The maximum resident set size (KB) = 818388 + 0: The total amount of wall time = 862.414978 + 0: The maximum resident set size (KB) = 820620 -Test 026 control_c384 PASS +Test 027 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_c384gdas -Checking test 027 control_c384gdas results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_c384gdas +Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1302,15 +1347,15 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 696.607167 - 0: The maximum resident set size (KB) = 935940 + 0: The total amount of wall time = 750.553938 + 0: The maximum resident set size (KB) = 935824 -Test 027 control_c384gdas PASS +Test 028 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_stochy -Checking test 028 control_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_stochy +Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1320,29 +1365,29 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.497264 - 0: The maximum resident set size (KB) = 471636 + 0: The total amount of wall time = 97.044954 + 0: The maximum resident set size (KB) = 468404 -Test 028 control_stochy PASS +Test 029 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_stochy_restart -Checking test 029 control_stochy_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_stochy_restart +Checking test 030 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 = 48.458021 - 0: The maximum resident set size (KB) = 252652 + 0: The total amount of wall time = 47.482335 + 0: The maximum resident set size (KB) = 251812 -Test 029 control_stochy_restart PASS +Test 030 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_lndp -Checking test 030 control_lndp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_lndp +Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1352,15 +1397,15 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 76.615910 - 0: The maximum resident set size (KB) = 471084 + 0: The total amount of wall time = 83.900154 + 0: The maximum resident set size (KB) = 472468 -Test 030 control_lndp PASS +Test 031 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr4 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_iovr4 -Checking test 031 control_iovr4 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr4 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_iovr4 +Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1374,15 +1419,15 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.490970 - 0: The maximum resident set size (KB) = 466232 + 0: The total amount of wall time = 139.245017 + 0: The maximum resident set size (KB) = 466208 -Test 031 control_iovr4 PASS +Test 032 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr5 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_iovr5 -Checking test 032 control_iovr5 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr5 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_iovr5 +Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1396,15 +1441,15 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 131.570533 - 0: The maximum resident set size (KB) = 467108 + 0: The total amount of wall time = 136.857719 + 0: The maximum resident set size (KB) = 465588 -Test 032 control_iovr5 PASS +Test 033 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_p8 -Checking test 033 control_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_p8 +Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1450,18 +1495,68 @@ Checking test 033 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.862487 - 0: The maximum resident set size (KB) = 859724 + 0: The total amount of wall time = 157.990953 + 0: The maximum resident set size (KB) = 853300 + +Test 034 control_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_restart_p8 +Checking test 035 control_restart_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 86.526474 + 0: The maximum resident set size (KB) = 605420 -Test 033 control_p8 PASS +Test 035 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_restart_p8 -Checking test 034 control_restart_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_decomp_p8 +Checking test 036 control_decomp_p8 results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1496,15 +1591,15 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 84.152098 - 0: The maximum resident set size (KB) = 604716 + 0: The total amount of wall time = 172.956356 + 0: The maximum resident set size (KB) = 851488 -Test 034 control_restart_p8 PASS +Test 036 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_decomp_p8 -Checking test 035 control_decomp_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_2threads_p8 +Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1546,22 +1641,26 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 163.259801 - 0: The maximum resident set size (KB) = 848520 + 0: The total amount of wall time = 193.986280 + 0: The maximum resident set size (KB) = 929048 -Test 035 control_decomp_p8 PASS +Test 037 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_2threads_p8 -Checking test 036 control_2threads_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p7_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_p7_rrtmgp +Checking test 038 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1596,15 +1695,15 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.656720 - 0: The maximum resident set size (KB) = 932192 + 0: The total amount of wall time = 187.642383 + 0: The maximum resident set size (KB) = 613420 -Test 036 control_2threads_p8 PASS +Test 038 control_p7_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p7_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_p7_rrtmgp -Checking test 037 control_p7_rrtmgp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_p8_rrtmgp +Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1650,15 +1749,15 @@ Checking test 037 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 186.237160 - 0: The maximum resident set size (KB) = 597632 + 0: The total amount of wall time = 197.523512 + 0: The maximum resident set size (KB) = 975908 -Test 037 control_p7_rrtmgp PASS +Test 039 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_control -Checking test 038 regional_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_control +Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1668,58 +1767,58 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 313.690751 - 0: The maximum resident set size (KB) = 581992 + 0: The total amount of wall time = 324.803282 + 0: The maximum resident set size (KB) = 588528 -Test 038 regional_control PASS +Test 040 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_restart -Checking test 039 regional_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_restart +Checking test 041 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 176.727235 - 0: The maximum resident set size (KB) = 584424 + 0: The total amount of wall time = 199.870437 + 0: The maximum resident set size (KB) = 587780 -Test 039 regional_restart PASS +Test 041 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_control_2dwrtdecomp -Checking test 040 regional_control_2dwrtdecomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_control_2dwrtdecomp +Checking test 042 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 312.466243 - 0: The maximum resident set size (KB) = 585844 + 0: The total amount of wall time = 320.241617 + 0: The maximum resident set size (KB) = 580220 -Test 040 regional_control_2dwrtdecomp PASS +Test 042 regional_control_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_noquilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_noquilt -Checking test 041 regional_noquilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_noquilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_noquilt +Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.625667 - 0: The maximum resident set size (KB) = 597188 + 0: The total amount of wall time = 322.219235 + 0: The maximum resident set size (KB) = 595472 -Test 041 regional_noquilt PASS +Test 043 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_2threads -Checking test 042 regional_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_2threads +Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1729,15 +1828,15 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 236.275455 - 0: The maximum resident set size (KB) = 581996 + 0: The total amount of wall time = 243.089811 + 0: The maximum resident set size (KB) = 558260 -Test 042 regional_2threads PASS +Test 044 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_hafs -Checking test 043 regional_hafs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_hafs +Checking test 045 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1745,29 +1844,29 @@ Checking test 043 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 315.404670 - 0: The maximum resident set size (KB) = 584220 + 0: The total amount of wall time = 315.673225 + 0: The maximum resident set size (KB) = 583104 -Test 043 regional_hafs PASS +Test 045 regional_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_netcdf_parallel -Checking test 044 regional_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_netcdf_parallel +Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 311.009655 - 0: The maximum resident set size (KB) = 579188 + 0: The total amount of wall time = 314.023088 + 0: The maximum resident set size (KB) = 584364 -Test 044 regional_netcdf_parallel PASS +Test 046 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_RRTMGP -Checking test 045 regional_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_RRTMGP +Checking test 047 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1777,15 +1876,15 @@ Checking test 045 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 412.760322 - 0: The maximum resident set size (KB) = 708976 + 0: The total amount of wall time = 423.916658 + 0: The maximum resident set size (KB) = 705292 -Test 045 regional_RRTMGP PASS +Test 047 regional_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_3km -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_3km -Checking test 046 regional_3km results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_3km +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_3km +Checking test 048 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1795,15 +1894,15 @@ Checking test 046 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 246.421002 - 0: The maximum resident set size (KB) = 618480 + 0: The total amount of wall time = 276.238829 + 0: The maximum resident set size (KB) = 620868 -Test 046 regional_3km PASS +Test 048 regional_3km PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_control -Checking test 047 rap_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_control +Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1849,15 +1948,69 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 367.564672 - 0: The maximum resident set size (KB) = 839124 + 0: The total amount of wall time = 367.513063 + 0: The maximum resident set size (KB) = 838944 -Test 047 rap_control PASS +Test 049 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_rrtmgp +Checking test 050 rap_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 411.229860 + 0: The maximum resident set size (KB) = 965448 + +Test 050 rap_rrtmgp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_spp_sppt_shum_skeb +Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1867,15 +2020,15 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 301.914751 - 0: The maximum resident set size (KB) = 926200 + 0: The total amount of wall time = 333.025324 + 0: The maximum resident set size (KB) = 932504 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_2threads -Checking test 049 rap_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_2threads +Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1921,15 +2074,15 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.816432 - 0: The maximum resident set size (KB) = 910416 + 0: The total amount of wall time = 437.510609 + 0: The maximum resident set size (KB) = 916760 -Test 049 rap_2threads PASS +Test 052 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_restart -Checking test 050 rap_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_restart +Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1967,15 +2120,15 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 186.912264 - 0: The maximum resident set size (KB) = 594856 + 0: The total amount of wall time = 191.151150 + 0: The maximum resident set size (KB) = 595424 -Test 050 rap_restart PASS +Test 053 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_sfcdiff -Checking test 051 rap_sfcdiff results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_sfcdiff +Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2021,15 +2174,15 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 367.241671 - 0: The maximum resident set size (KB) = 839380 + 0: The total amount of wall time = 373.603592 + 0: The maximum resident set size (KB) = 839284 -Test 051 rap_sfcdiff PASS +Test 054 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_sfcdiff_restart +Checking test 055 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2067,15 +2220,15 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.376894 - 0: The maximum resident set size (KB) = 596404 + 0: The total amount of wall time = 185.149659 + 0: The maximum resident set size (KB) = 597008 -Test 052 rap_sfcdiff_restart PASS +Test 055 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hrrr_control -Checking test 053 hrrr_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hrrr_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hrrr_control +Checking test 056 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2121,15 +2274,15 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 361.358883 - 0: The maximum resident set size (KB) = 835876 + 0: The total amount of wall time = 343.806365 + 0: The maximum resident set size (KB) = 839344 -Test 053 hrrr_control PASS +Test 056 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rrfs_v1beta -Checking test 054 rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rrfs_v1beta +Checking test 057 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2175,15 +2328,15 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 360.163167 - 0: The maximum resident set size (KB) = 830592 + 0: The total amount of wall time = 374.128537 + 0: The maximum resident set size (KB) = 837180 -Test 054 rrfs_v1beta PASS +Test 057 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rrfs_v1nssl -Checking test 055 rrfs_v1nssl results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rrfs_v1nssl +Checking test 058 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2197,15 +2350,15 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 445.190696 - 0: The maximum resident set size (KB) = 527448 + 0: The total amount of wall time = 455.487036 + 0: The maximum resident set size (KB) = 523760 -Test 055 rrfs_v1nssl PASS +Test 058 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rrfs_v1nssl_nohailnoccn -Checking test 056 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rrfs_v1nssl_nohailnoccn +Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2219,15 +2372,15 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 437.098775 - 0: The maximum resident set size (KB) = 513864 + 0: The total amount of wall time = 436.692687 + 0: The maximum resident set size (KB) = 516584 -Test 056 rrfs_v1nssl_nohailnoccn PASS +Test 059 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rrfs_conus13km_hrrr_warm -Checking test 057 rrfs_conus13km_hrrr_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rrfs_conus13km_hrrr_warm +Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2235,15 +2388,15 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 174.824304 - 0: The maximum resident set size (KB) = 671948 + 0: The total amount of wall time = 199.190378 + 0: The maximum resident set size (KB) = 670852 -Test 057 rrfs_conus13km_hrrr_warm PASS +Test 060 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rrfs_conus13km_radar_tten_warm -Checking test 058 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rrfs_conus13km_radar_tten_warm +Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2251,15 +2404,15 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 172.720409 - 0: The maximum resident set size (KB) = 674208 + 0: The total amount of wall time = 189.059138 + 0: The maximum resident set size (KB) = 674752 -Test 058 rrfs_conus13km_radar_tten_warm PASS +Test 061 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_rrtmgp -Checking test 059 control_rrtmgp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_rrtmgp +Checking test 062 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2269,15 +2422,15 @@ Checking test 059 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 199.499585 - 0: The maximum resident set size (KB) = 596388 + 0: The total amount of wall time = 204.227383 + 0: The maximum resident set size (KB) = 612792 -Test 059 control_rrtmgp PASS +Test 062 control_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_rrtmgp_c192 -Checking test 060 control_rrtmgp_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_rrtmgp_c192 +Checking test 063 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2287,15 +2440,15 @@ Checking test 060 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 534.795484 - 0: The maximum resident set size (KB) = 800468 + 0: The total amount of wall time = 542.382989 + 0: The maximum resident set size (KB) = 815232 -Test 060 control_rrtmgp_c192 PASS +Test 063 control_rrtmgp_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_csawmg -Checking test 061 control_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_csawmg +Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2305,15 +2458,15 @@ Checking test 061 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 317.484022 - 0: The maximum resident set size (KB) = 544244 + 0: The total amount of wall time = 338.551212 + 0: The maximum resident set size (KB) = 539204 -Test 061 control_csawmg PASS +Test 064 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_csawmgt -Checking test 062 control_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_csawmgt +Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2323,15 +2476,15 @@ Checking test 062 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 318.845817 - 0: The maximum resident set size (KB) = 541396 + 0: The total amount of wall time = 318.833386 + 0: The maximum resident set size (KB) = 539552 -Test 062 control_csawmgt PASS +Test 065 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_flake -Checking test 063 control_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_flake +Checking test 066 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2341,15 +2494,15 @@ Checking test 063 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 235.232263 - 0: The maximum resident set size (KB) = 511680 + 0: The total amount of wall time = 254.657464 + 0: The maximum resident set size (KB) = 543424 -Test 063 control_flake PASS +Test 066 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_ras -Checking test 064 control_ras results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_ras +Checking test 067 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2359,15 +2512,15 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 178.919488 - 0: The maximum resident set size (KB) = 504412 + 0: The total amount of wall time = 191.886090 + 0: The maximum resident set size (KB) = 499892 -Test 064 control_ras PASS +Test 067 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_thompson -Checking test 065 control_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_thompson +Checking test 068 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2377,15 +2530,15 @@ Checking test 065 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 222.354296 - 0: The maximum resident set size (KB) = 859884 + 0: The total amount of wall time = 214.950209 + 0: The maximum resident set size (KB) = 858180 -Test 065 control_thompson PASS +Test 068 control_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_thompson_no_aero -Checking test 066 control_thompson_no_aero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_thompson_no_aero +Checking test 069 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2395,55 +2548,55 @@ Checking test 066 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 207.738272 - 0: The maximum resident set size (KB) = 850992 + 0: The total amount of wall time = 210.419388 + 0: The maximum resident set size (KB) = 854120 -Test 066 control_thompson_no_aero PASS +Test 069 control_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_repro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_wam_repro -Checking test 067 control_wam results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_repro +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_wam_repro +Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 122.588653 - 0: The maximum resident set size (KB) = 233748 + 0: The total amount of wall time = 124.707984 + 0: The maximum resident set size (KB) = 233552 -Test 067 control_wam PASS +Test 070 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_debug -Checking test 068 control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_debug +Checking test 071 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 = 155.010889 - 0: The maximum resident set size (KB) = 633796 + 0: The total amount of wall time = 161.243063 + 0: The maximum resident set size (KB) = 631160 -Test 068 control_debug PASS +Test 071 control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_2threads_debug -Checking test 069 control_2threads_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_2threads_debug +Checking test 072 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 254.351368 - 0: The maximum resident set size (KB) = 681920 + 0: The total amount of wall time = 236.440251 + 0: The maximum resident set size (KB) = 679364 -Test 069 control_2threads_debug PASS +Test 072 control_2threads_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_CubedSphereGrid_debug -Checking test 070 control_CubedSphereGrid_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_CubedSphereGrid_debug +Checking test 073 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2469,429 +2622,429 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 168.058352 - 0: The maximum resident set size (KB) = 631472 + 0: The total amount of wall time = 170.641730 + 0: The maximum resident set size (KB) = 633264 -Test 070 control_CubedSphereGrid_debug PASS +Test 073 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_wrtGauss_netcdf_parallel_debug -Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_wrtGauss_netcdf_parallel_debug +Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.900969 - 0: The maximum resident set size (KB) = 632304 + 0: The total amount of wall time = 160.282217 + 0: The maximum resident set size (KB) = 631324 -Test 071 control_wrtGauss_netcdf_parallel_debug PASS +Test 074 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_stochy_debug -Checking test 072 control_stochy_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_stochy_debug +Checking test 075 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 = 179.827679 - 0: The maximum resident set size (KB) = 639012 + 0: The total amount of wall time = 202.020291 + 0: The maximum resident set size (KB) = 637044 -Test 072 control_stochy_debug PASS +Test 075 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_lndp_debug -Checking test 073 control_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_lndp_debug +Checking test 076 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 = 155.407210 - 0: The maximum resident set size (KB) = 640248 + 0: The total amount of wall time = 166.954268 + 0: The maximum resident set size (KB) = 640352 -Test 073 control_lndp_debug PASS +Test 076 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_rrtmgp_debug -Checking test 074 control_rrtmgp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_rrtmgp_debug +Checking test 077 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.611419 - 0: The maximum resident set size (KB) = 734904 + 0: The total amount of wall time = 175.013242 + 0: The maximum resident set size (KB) = 750380 -Test 074 control_rrtmgp_debug PASS +Test 077 control_rrtmgp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_csawmg_debug -Checking test 075 control_csawmg_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_csawmg_debug +Checking test 078 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 = 240.836790 - 0: The maximum resident set size (KB) = 674896 + 0: The total amount of wall time = 243.993949 + 0: The maximum resident set size (KB) = 676000 -Test 075 control_csawmg_debug PASS +Test 078 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_csawmgt_debug -Checking test 076 control_csawmgt_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_csawmgt_debug +Checking test 079 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 = 231.317228 - 0: The maximum resident set size (KB) = 682208 + 0: The total amount of wall time = 241.272828 + 0: The maximum resident set size (KB) = 675548 -Test 076 control_csawmgt_debug PASS +Test 079 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_ras_debug -Checking test 077 control_ras_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_ras_debug +Checking test 080 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 = 163.534929 - 0: The maximum resident set size (KB) = 645216 + 0: The total amount of wall time = 184.192795 + 0: The maximum resident set size (KB) = 643476 -Test 077 control_ras_debug PASS +Test 080 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_diag_debug -Checking test 078 control_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_diag_debug +Checking test 081 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 = 163.796418 - 0: The maximum resident set size (KB) = 688700 + 0: The total amount of wall time = 191.437805 + 0: The maximum resident set size (KB) = 689672 -Test 078 control_diag_debug PASS +Test 081 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_debug_p8 -Checking test 079 control_debug_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_debug_p8 +Checking test 082 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.224369 - 0: The maximum resident set size (KB) = 1025844 + 0: The total amount of wall time = 188.275062 + 0: The maximum resident set size (KB) = 1021256 -Test 079 control_debug_p8 PASS +Test 082 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_thompson_debug -Checking test 080 control_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_thompson_debug +Checking test 083 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.827974 - 0: The maximum resident set size (KB) = 996256 + 0: The total amount of wall time = 182.018232 + 0: The maximum resident set size (KB) = 998092 -Test 080 control_thompson_debug PASS +Test 083 control_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_thompson_no_aero_debug -Checking test 081 control_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_thompson_no_aero_debug +Checking test 084 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.100436 - 0: The maximum resident set size (KB) = 993276 + 0: The total amount of wall time = 184.599785 + 0: The maximum resident set size (KB) = 992360 -Test 081 control_thompson_no_aero_debug PASS +Test 084 control_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug_extdiag -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_thompson_extdiag_debug -Checking test 082 control_thompson_extdiag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug_extdiag +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_thompson_extdiag_debug +Checking test 085 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.487842 - 0: The maximum resident set size (KB) = 1025840 + 0: The total amount of wall time = 195.548179 + 0: The maximum resident set size (KB) = 1027972 -Test 082 control_thompson_extdiag_debug PASS +Test 085 control_thompson_extdiag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_thompson_progcld_thompson_debug -Checking test 083 control_thompson_progcld_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_thompson_progcld_thompson_debug +Checking test 086 control_thompson_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 = 182.836680 - 0: The maximum resident set size (KB) = 999532 + 0: The total amount of wall time = 211.946403 + 0: The maximum resident set size (KB) = 994928 -Test 083 control_thompson_progcld_thompson_debug PASS +Test 086 control_thompson_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_debug -Checking test 084 regional_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/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 = 247.463219 - 0: The maximum resident set size (KB) = 608968 + 0: The total amount of wall time = 269.741949 + 0: The maximum resident set size (KB) = 608428 -Test 084 regional_debug PASS +Test 087 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_control_debug -Checking test 085 rap_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/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 = 272.943728 - 0: The maximum resident set size (KB) = 1003912 + 0: The total amount of wall time = 288.226962 + 0: The maximum resident set size (KB) = 1005808 -Test 085 rap_control_debug PASS +Test 088 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_unified_drag_suite_debug -Checking test 086 rap_unified_drag_suite_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_unified_drag_suite_debug +Checking test 089 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 = 269.585025 - 0: The maximum resident set size (KB) = 1002672 + 0: The total amount of wall time = 307.976079 + 0: The maximum resident set size (KB) = 1008020 -Test 086 rap_unified_drag_suite_debug PASS +Test 089 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_diag_debug -Checking test 087 rap_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_diag_debug +Checking test 090 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 = 285.750626 - 0: The maximum resident set size (KB) = 1088092 + 0: The total amount of wall time = 306.370843 + 0: The maximum resident set size (KB) = 1086740 -Test 087 rap_diag_debug PASS +Test 090 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_cires_ugwp_debug -Checking test 088 rap_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_cires_ugwp_debug +Checking test 091 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 = 278.893909 - 0: The maximum resident set size (KB) = 1003592 + 0: The total amount of wall time = 298.052249 + 0: The maximum resident set size (KB) = 982608 -Test 088 rap_cires_ugwp_debug PASS +Test 091 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_unified_ugwp_debug -Checking test 089 rap_unified_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_unified_ugwp_debug +Checking test 092 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 = 279.957161 - 0: The maximum resident set size (KB) = 976232 + 0: The total amount of wall time = 304.043551 + 0: The maximum resident set size (KB) = 1003932 -Test 089 rap_unified_ugwp_debug PASS +Test 092 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_lndp_debug -Checking test 090 rap_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_lndp_debug +Checking test 093 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 = 283.785278 - 0: The maximum resident set size (KB) = 1004264 + 0: The total amount of wall time = 287.676346 + 0: The maximum resident set size (KB) = 1009088 -Test 090 rap_lndp_debug PASS +Test 093 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_flake_debug -Checking test 091 rap_flake_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_flake_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_flake_debug +Checking test 094 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 = 272.163840 - 0: The maximum resident set size (KB) = 1002284 + 0: The total amount of wall time = 291.634960 + 0: The maximum resident set size (KB) = 1004404 -Test 091 rap_flake_debug PASS +Test 094 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_progcld_thompson_debug -Checking test 092 rap_progcld_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_progcld_thompson_debug +Checking test 095 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 = 276.898695 - 0: The maximum resident set size (KB) = 1003748 + 0: The total amount of wall time = 297.177978 + 0: The maximum resident set size (KB) = 1005052 -Test 092 rap_progcld_thompson_debug PASS +Test 095 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_noah_debug -Checking test 093 rap_noah_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_noah_debug +Checking test 096 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 = 268.309879 - 0: The maximum resident set size (KB) = 1005752 + 0: The total amount of wall time = 297.284892 + 0: The maximum resident set size (KB) = 1008276 -Test 093 rap_noah_debug PASS +Test 096 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_rrtmgp_debug -Checking test 094 rap_rrtmgp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_rrtmgp_debug +Checking test 097 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 458.220479 - 0: The maximum resident set size (KB) = 1113636 + 0: The total amount of wall time = 483.505458 + 0: The maximum resident set size (KB) = 1123564 -Test 094 rap_rrtmgp_debug PASS +Test 097 rap_rrtmgp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_sfcdiff_debug -Checking test 095 rap_sfcdiff_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/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 = 280.826913 - 0: The maximum resident set size (KB) = 1004540 + 0: The total amount of wall time = 293.325108 + 0: The maximum resident set size (KB) = 1003820 -Test 095 rap_sfcdiff_debug PASS +Test 098 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/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 = 455.326610 - 0: The maximum resident set size (KB) = 1006992 + 0: The total amount of wall time = 471.018604 + 0: The maximum resident set size (KB) = 1003832 -Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rrfs_v1beta_debug -Checking test 097 rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/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 = 268.050055 - 0: The maximum resident set size (KB) = 1001228 + 0: The total amount of wall time = 287.190314 + 0: The maximum resident set size (KB) = 998136 -Test 097 rrfs_v1beta_debug PASS +Test 100 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_wam_debug -Checking test 098 control_wam_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/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 = 283.311459 - 0: The maximum resident set size (KB) = 258180 + 0: The total amount of wall time = 297.291226 + 0: The maximum resident set size (KB) = 257348 -Test 098 control_wam_debug PASS +Test 101 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_atm -Checking test 099 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_atm +Checking test 102 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 261.303892 - 0: The maximum resident set size (KB) = 706048 + 0: The total amount of wall time = 291.375229 + 0: The maximum resident set size (KB) = 717416 -Test 099 hafs_regional_atm PASS +Test 102 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_atm_thompson_gfdlsf -Checking test 100 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_atm_thompson_gfdlsf +Checking test 103 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 317.240204 - 0: The maximum resident set size (KB) = 1070984 + 0: The total amount of wall time = 349.637150 + 0: The maximum resident set size (KB) = 1074780 -Test 100 hafs_regional_atm_thompson_gfdlsf PASS +Test 103 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_atm_ocn -Checking test 101 hafs_regional_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_atm_ocn +Checking test 104 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2899,59 +3052,59 @@ Checking test 101 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 = 348.616344 - 0: The maximum resident set size (KB) = 728184 + 0: The total amount of wall time = 392.324474 + 0: The maximum resident set size (KB) = 728268 -Test 101 hafs_regional_atm_ocn PASS +Test 104 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_atm_wav -Checking test 102 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_atm_wav +Checking test 105 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 821.436933 - 0: The maximum resident set size (KB) = 732480 + 0: The total amount of wall time = 854.501052 + 0: The maximum resident set size (KB) = 727912 -Test 102 hafs_regional_atm_wav PASS +Test 105 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_atm_ocn_wav -Checking test 103 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_atm_ocn_wav +Checking test 106 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 894.947615 - 0: The maximum resident set size (KB) = 729240 + 0: The total amount of wall time = 990.711761 + 0: The maximum resident set size (KB) = 725964 -Test 103 hafs_regional_atm_ocn_wav PASS +Test 106 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_1nest_atm -Checking test 104 hafs_regional_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_1nest_atm +Checking test 107 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 415.156258 - 0: The maximum resident set size (KB) = 313232 + 0: The total amount of wall time = 422.664170 + 0: The maximum resident set size (KB) = 311284 -Test 104 hafs_regional_1nest_atm PASS +Test 107 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_telescopic_2nests_atm -Checking test 105 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_telescopic_2nests_atm +Checking test 108 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2959,29 +3112,29 @@ Checking test 105 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 = 426.948212 - 0: The maximum resident set size (KB) = 327044 + 0: The total amount of wall time = 454.387110 + 0: The maximum resident set size (KB) = 327888 -Test 105 hafs_regional_telescopic_2nests_atm PASS Tries: 2 +Test 108 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_global_1nest_atm -Checking test 106 hafs_global_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_global_1nest_atm +Checking test 109 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 = 193.196910 - 0: The maximum resident set size (KB) = 205252 + 0: The total amount of wall time = 196.423029 + 0: The maximum resident set size (KB) = 209480 -Test 106 hafs_global_1nest_atm PASS +Test 109 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_global_multiple_4nests_atm -Checking test 107 hafs_global_multiple_4nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_global_multiple_4nests_atm +Checking test 110 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2993,149 +3146,149 @@ Checking test 107 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 525.510481 - 0: The maximum resident set size (KB) = 251476 + 0: The total amount of wall time = 699.323907 + 0: The maximum resident set size (KB) = 264108 -Test 107 hafs_global_multiple_4nests_atm PASS +Test 110 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_docn -Checking test 108 hafs_regional_docn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_docn +Checking test 111 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 343.523073 - 0: The maximum resident set size (KB) = 724556 + 0: The total amount of wall time = 376.398617 + 0: The maximum resident set size (KB) = 726820 -Test 108 hafs_regional_docn PASS +Test 111 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_docn_oisst -Checking test 109 hafs_regional_docn_oisst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_docn_oisst +Checking test 112 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 340.154662 - 0: The maximum resident set size (KB) = 722840 + 0: The total amount of wall time = 366.890069 + 0: The maximum resident set size (KB) = 726008 -Test 109 hafs_regional_docn_oisst PASS +Test 112 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_datm_cdeps -Checking test 110 hafs_regional_datm_cdeps results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_datm_cdeps +Checking test 113 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 = 931.325047 - 0: The maximum resident set size (KB) = 854780 + 0: The total amount of wall time = 938.187709 + 0: The maximum resident set size (KB) = 851240 -Test 110 hafs_regional_datm_cdeps PASS +Test 113 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_control_cfsr -Checking test 111 datm_cdeps_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_control_cfsr +Checking test 114 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.295710 - 0: The maximum resident set size (KB) = 717956 + 0: The total amount of wall time = 150.470458 + 0: The maximum resident set size (KB) = 720836 -Test 111 datm_cdeps_control_cfsr PASS +Test 114 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_restart_cfsr -Checking test 112 datm_cdeps_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_restart_cfsr +Checking test 115 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 97.591358 - 0: The maximum resident set size (KB) = 719164 + 0: The total amount of wall time = 143.438043 + 0: The maximum resident set size (KB) = 717684 -Test 112 datm_cdeps_restart_cfsr PASS +Test 115 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_control_gefs -Checking test 113 datm_cdeps_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_control_gefs +Checking test 116 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.936785 - 0: The maximum resident set size (KB) = 620844 + 0: The total amount of wall time = 141.658154 + 0: The maximum resident set size (KB) = 621548 -Test 113 datm_cdeps_control_gefs PASS +Test 116 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_iau_gefs -Checking test 114 datm_cdeps_iau_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_iau_gefs +Checking test 117 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.813290 - 0: The maximum resident set size (KB) = 619088 + 0: The total amount of wall time = 145.100147 + 0: The maximum resident set size (KB) = 617976 -Test 114 datm_cdeps_iau_gefs PASS +Test 117 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_stochy_gefs -Checking test 115 datm_cdeps_stochy_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_stochy_gefs +Checking test 118 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.626202 - 0: The maximum resident set size (KB) = 621068 + 0: The total amount of wall time = 145.494969 + 0: The maximum resident set size (KB) = 623340 -Test 115 datm_cdeps_stochy_gefs PASS +Test 118 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_bulk_cfsr -Checking test 116 datm_cdeps_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_bulk_cfsr +Checking test 119 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.731578 - 0: The maximum resident set size (KB) = 718588 + 0: The total amount of wall time = 154.923843 + 0: The maximum resident set size (KB) = 738992 -Test 116 datm_cdeps_bulk_cfsr PASS +Test 119 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_bulk_gefs -Checking test 117 datm_cdeps_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_bulk_gefs +Checking test 120 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.251819 - 0: The maximum resident set size (KB) = 622880 + 0: The total amount of wall time = 146.978126 + 0: The maximum resident set size (KB) = 620908 -Test 117 datm_cdeps_bulk_gefs PASS +Test 120 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_mx025_cfsr -Checking test 118 datm_cdeps_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_mx025_cfsr +Checking test 121 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3143,15 +3296,15 @@ Checking test 118 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 = 298.477493 - 0: The maximum resident set size (KB) = 566888 + 0: The total amount of wall time = 357.945484 + 0: The maximum resident set size (KB) = 561688 -Test 118 datm_cdeps_mx025_cfsr PASS +Test 121 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_mx025_gefs -Checking test 119 datm_cdeps_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_mx025_gefs +Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3159,65 +3312,65 @@ Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 293.774090 - 0: The maximum resident set size (KB) = 538200 + 0: The total amount of wall time = 337.895987 + 0: The maximum resident set size (KB) = 538128 -Test 119 datm_cdeps_mx025_gefs PASS +Test 122 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_multiple_files_cfsr -Checking test 120 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_multiple_files_cfsr +Checking test 123 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 = 144.202324 - 0: The maximum resident set size (KB) = 722736 + 0: The total amount of wall time = 155.581238 + 0: The maximum resident set size (KB) = 723212 -Test 120 datm_cdeps_multiple_files_cfsr PASS +Test 123 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_3072x1536_cfsr -Checking test 121 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_3072x1536_cfsr +Checking test 124 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 190.751008 - 0: The maximum resident set size (KB) = 1836772 + 0: The total amount of wall time = 207.400968 + 0: The maximum resident set size (KB) = 1829792 -Test 121 datm_cdeps_3072x1536_cfsr PASS +Test 124 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_gfs -Checking test 122 datm_cdeps_gfs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_gfs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_gfs +Checking test 125 datm_cdeps_gfs results .... Comparing RESTART/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 = 189.372771 - 0: The maximum resident set size (KB) = 1830596 + 0: The total amount of wall time = 198.831737 + 0: The maximum resident set size (KB) = 1831764 -Test 122 datm_cdeps_gfs PASS +Test 125 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_debug_cfsr -Checking test 123 datm_cdeps_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_debug_cfsr +Checking test 126 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 443.942016 - 0: The maximum resident set size (KB) = 728736 + 0: The total amount of wall time = 460.429813 + 0: The maximum resident set size (KB) = 727896 -Test 123 datm_cdeps_debug_cfsr PASS +Test 126 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_atmwav -Checking test 124 control_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_atmwav +Checking test 127 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3260,15 +3413,15 @@ Checking test 124 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 83.936486 - 0: The maximum resident set size (KB) = 498276 + 0: The total amount of wall time = 90.182291 + 0: The maximum resident set size (KB) = 495948 -Test 124 control_atmwav PASS +Test 127 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_c384gdas_wav -Checking test 125 control_c384gdas_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_c384gdas_wav +Checking test 128 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3313,12 +3466,12 @@ Checking test 125 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 683.051189 - 0: The maximum resident set size (KB) = 1020916 + 0: The total amount of wall time = 784.930942 + 0: The maximum resident set size (KB) = 1022836 -Test 125 control_c384gdas_wav PASS +Test 128 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 4 11:35:23 CDT 2022 -Elapsed time: 01h:03m:31s. Have a nice day! +Tue Apr 5 14:29:48 CDT 2022 +Elapsed time: 01h:18m:57s. Have a nice day! From 8103c07866b61ecafd8ce2e995862d7679e4239e Mon Sep 17 00:00:00 2001 From: MinsukJi-NOAA Date: Tue, 5 Apr 2022 20:00:58 +0000 Subject: [PATCH 29/57] Add wcoss cray RT log: all tests passed --- tests/RegressionTests_wcoss_cray.log | 1050 ++++++++++++++------------ 1 file changed, 579 insertions(+), 471 deletions(-) diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 6cca786e04..117e6f66be 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,18 +1,18 @@ -Mon Apr 4 15:35:30 UTC 2022 +Tue Apr 5 19:17:43 UTC 2022 Start Regression test -Compile 001 elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 736 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 734 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 001 elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 710 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 746 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit Compile 005 elapsed time 525 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 499 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 502 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 795 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 512 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 485 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 761 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -59,14 +59,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 142.558875 -The maximum resident set size (KB) = 420996 +The total amount of wall time = 143.536213 +The maximum resident set size (KB) = 420856 Test 001 control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -109,28 +109,28 @@ Checking test 002 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 147.609364 -The maximum resident set size (KB) = 417632 +The total amount of wall time = 147.350315 +The maximum resident set size (KB) = 417500 Test 002 control_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_2dwrtdecomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_2dwrtdecomp Checking test 003 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 137.104697 -The maximum resident set size (KB) = 420968 +The total amount of wall time = 136.214560 +The maximum resident set size (KB) = 420784 Test 003 control_2dwrtdecomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_restart Checking test 004 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -169,14 +169,14 @@ Checking test 004 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 79.105491 -The maximum resident set size (KB) = 156080 +The total amount of wall time = 79.525006 +The maximum resident set size (KB) = 156168 Test 004 control_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_fhzero +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_fhzero Checking test 005 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -219,14 +219,14 @@ Checking test 005 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 135.368708 -The maximum resident set size (KB) = 420932 +The total amount of wall time = 134.075261 +The maximum resident set size (KB) = 420680 Test 005 control_fhzero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_CubedSphereGrid +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_CubedSphereGrid Checking test 006 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -253,14 +253,14 @@ Checking test 006 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 136.848105 -The maximum resident set size (KB) = 421048 +The total amount of wall time = 137.047675 +The maximum resident set size (KB) = 420848 Test 006 control_CubedSphereGrid PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_latlon -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_latlon +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_latlon +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_latlon Checking test 007 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -271,14 +271,14 @@ Checking test 007 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 142.722591 -The maximum resident set size (KB) = 420928 +The total amount of wall time = 140.079154 +The maximum resident set size (KB) = 420892 Test 007 control_latlon PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_wrtGauss_netcdf_parallel Checking test 008 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -289,14 +289,14 @@ Checking test 008 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 141.412422 -The maximum resident set size (KB) = 420920 +The total amount of wall time = 142.661214 +The maximum resident set size (KB) = 420708 Test 008 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c48 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_c48 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_c48 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_c48 Checking test 009 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -335,14 +335,14 @@ Checking test 009 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 452.668003 -The maximum resident set size (KB) = 622020 +The total amount of wall time = 448.537865 +The maximum resident set size (KB) = 621844 Test 009 control_c48 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c192 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_c192 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_c192 Checking test 010 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -353,14 +353,14 @@ Checking test 010 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 550.104783 -The maximum resident set size (KB) = 518560 +The total amount of wall time = 553.753318 +The maximum resident set size (KB) = 518380 Test 010 control_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_stochy -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_stochy +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_stochy Checking test 011 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -371,28 +371,28 @@ Checking test 011 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 96.140225 -The maximum resident set size (KB) = 423324 +The total amount of wall time = 97.301042 +The maximum resident set size (KB) = 423480 Test 011 control_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_stochy -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_stochy_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_stochy +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_stochy_restart Checking test 012 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 55.642405 -The maximum resident set size (KB) = 173380 +The total amount of wall time = 56.107535 +The maximum resident set size (KB) = 173064 Test 012 control_stochy_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_lndp -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_lndp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_lndp Checking test 013 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -403,14 +403,14 @@ Checking test 013 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 87.411010 -The maximum resident set size (KB) = 424628 +The total amount of wall time = 87.663803 +The maximum resident set size (KB) = 424476 Test 013 control_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_iovr4 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_iovr4 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_iovr4 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_iovr4 Checking test 014 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -425,14 +425,14 @@ Checking test 014 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 142.908523 -The maximum resident set size (KB) = 420928 +The total amount of wall time = 146.641027 +The maximum resident set size (KB) = 420744 Test 014 control_iovr4 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_iovr5 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_iovr5 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_iovr5 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_iovr5 Checking test 015 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -447,14 +447,14 @@ Checking test 015 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 143.206194 -The maximum resident set size (KB) = 420920 +The total amount of wall time = 145.666290 +The maximum resident set size (KB) = 420732 Test 015 control_iovr5 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_p8 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_p8 Checking test 016 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -501,14 +501,14 @@ Checking test 016 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 174.086832 -The maximum resident set size (KB) = 807540 +The total amount of wall time = 176.059803 +The maximum resident set size (KB) = 807304 Test 016 control_p8 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_restart_p8 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_restart_p8 Checking test 017 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -547,14 +547,14 @@ Checking test 017 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.591827 -The maximum resident set size (KB) = 543972 +The total amount of wall time = 99.778403 +The maximum resident set size (KB) = 543776 Test 017 control_restart_p8 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_decomp_p8 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_decomp_p8 Checking test 018 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -597,14 +597,14 @@ Checking test 018 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 178.597747 -The maximum resident set size (KB) = 801976 +The total amount of wall time = 183.776121 +The maximum resident set size (KB) = 801888 Test 018 control_decomp_p8 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p7_rrtmgp -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_p7_rrtmgp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p7_rrtmgp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_p7_rrtmgp Checking test 019 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -651,15 +651,69 @@ Checking test 019 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 215.066828 -The maximum resident set size (KB) = 550556 +The total amount of wall time = 216.236383 +The maximum resident set size (KB) = 565616 Test 019 control_p7_rrtmgp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_control -Checking test 020 regional_control results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8_rrtmgp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_p8_rrtmgp +Checking test 020 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 228.052561 +The maximum resident set size (KB) = 924540 + +Test 020 control_p8_rrtmgp PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/regional_control +Checking test 021 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -669,58 +723,58 @@ Checking test 020 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 355.230518 -The maximum resident set size (KB) = 532000 +The total amount of wall time = 353.938115 +The maximum resident set size (KB) = 531604 -Test 020 regional_control PASS +Test 021 regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_restart -Checking test 021 regional_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/regional_restart +Checking test 022 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 211.163632 -The maximum resident set size (KB) = 526564 +The total amount of wall time = 215.923566 +The maximum resident set size (KB) = 526284 -Test 021 regional_restart PASS +Test 022 regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_control_2dwrtdecomp -Checking test 022 regional_control_2dwrtdecomp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/regional_control_2dwrtdecomp +Checking test 023 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 356.002948 -The maximum resident set size (KB) = 531820 +The total amount of wall time = 353.908226 +The maximum resident set size (KB) = 531728 -Test 022 regional_control_2dwrtdecomp PASS +Test 023 regional_control_2dwrtdecomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_noquilt -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_noquilt -Checking test 023 regional_noquilt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_noquilt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/regional_noquilt +Checking test 024 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 386.243090 -The maximum resident set size (KB) = 533852 +The total amount of wall time = 381.888304 +The maximum resident set size (KB) = 533692 -Test 023 regional_noquilt PASS +Test 024 regional_noquilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_hafs -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_hafs -Checking test 024 regional_hafs results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_hafs +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/regional_hafs +Checking test 025 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -728,29 +782,29 @@ Checking test 024 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 349.524239 -The maximum resident set size (KB) = 525940 +The total amount of wall time = 349.693659 +The maximum resident set size (KB) = 525928 -Test 024 regional_hafs PASS +Test 025 regional_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_netcdf_parallel -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_netcdf_parallel -Checking test 025 regional_netcdf_parallel results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/regional_netcdf_parallel +Checking test 026 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 350.150760 -The maximum resident set size (KB) = 525300 +The total amount of wall time = 350.324853 +The maximum resident set size (KB) = 525132 -Test 025 regional_netcdf_parallel PASS +Test 026 regional_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_RRTMGP -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_RRTMGP -Checking test 026 regional_RRTMGP results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_RRTMGP +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/regional_RRTMGP +Checking test 027 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -760,15 +814,15 @@ Checking test 026 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 469.416836 -The maximum resident set size (KB) = 652156 +The total amount of wall time = 478.942635 +The maximum resident set size (KB) = 647272 -Test 026 regional_RRTMGP PASS +Test 027 regional_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_3km -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_3km -Checking test 027 regional_3km results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_3km +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/regional_3km +Checking test 028 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -778,15 +832,69 @@ Checking test 027 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.426749 -The maximum resident set size (KB) = 555584 +The total amount of wall time = 298.682528 +The maximum resident set size (KB) = 555428 + +Test 028 regional_3km PASS -Test 027 regional_3km PASS +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_control +Checking test 029 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 390.345063 +The maximum resident set size (KB) = 785780 + +Test 029 rap_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_control -Checking test 028 rap_control results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_rrtmgp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_rrtmgp +Checking test 030 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -832,15 +940,15 @@ Checking test 028 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 391.219821 -The maximum resident set size (KB) = 785904 +The total amount of wall time = 436.948911 +The maximum resident set size (KB) = 908652 -Test 028 rap_control PASS +Test 030 rap_rrtmgp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/regional_spp_sppt_shum_skeb -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_spp_sppt_shum_skeb -Checking test 029 regional_spp_sppt_shum_skeb results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/regional_spp_sppt_shum_skeb +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/regional_spp_sppt_shum_skeb +Checking test 031 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -850,15 +958,15 @@ Checking test 029 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 319.065156 -The maximum resident set size (KB) = 854212 +The total amount of wall time = 321.719601 +The maximum resident set size (KB) = 854396 -Test 029 regional_spp_sppt_shum_skeb PASS +Test 031 regional_spp_sppt_shum_skeb PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_restart -Checking test 030 rap_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_restart +Checking test 032 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -896,15 +1004,15 @@ Checking test 030 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 202.519772 -The maximum resident set size (KB) = 529452 +The total amount of wall time = 205.710549 +The maximum resident set size (KB) = 529548 -Test 030 rap_restart PASS +Test 032 rap_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_sfcdiff -Checking test 031 rap_sfcdiff results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_sfcdiff +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_sfcdiff +Checking test 033 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -950,15 +1058,15 @@ Checking test 031 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 388.017754 -The maximum resident set size (KB) = 785952 +The total amount of wall time = 387.982097 +The maximum resident set size (KB) = 785964 -Test 031 rap_sfcdiff PASS +Test 033 rap_sfcdiff PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_sfcdiff_restart -Checking test 032 rap_sfcdiff_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_sfcdiff +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_sfcdiff_restart +Checking test 034 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -996,15 +1104,15 @@ Checking test 032 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 203.240220 -The maximum resident set size (KB) = 530468 +The total amount of wall time = 203.465927 +The maximum resident set size (KB) = 530284 -Test 032 rap_sfcdiff_restart PASS +Test 034 rap_sfcdiff_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hrrr_control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hrrr_control -Checking test 033 hrrr_control results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hrrr_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/hrrr_control +Checking test 035 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1050,15 +1158,15 @@ Checking test 033 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 375.567399 -The maximum resident set size (KB) = 783412 +The total amount of wall time = 374.829840 +The maximum resident set size (KB) = 784056 -Test 033 hrrr_control PASS +Test 035 hrrr_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1beta -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rrfs_v1beta -Checking test 034 rrfs_v1beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_v1beta +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rrfs_v1beta +Checking test 036 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1104,15 +1212,15 @@ Checking test 034 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 382.729617 -The maximum resident set size (KB) = 782936 +The total amount of wall time = 384.175709 +The maximum resident set size (KB) = 782952 -Test 034 rrfs_v1beta PASS +Test 036 rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1nssl -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rrfs_v1nssl -Checking test 035 rrfs_v1nssl results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_v1nssl +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rrfs_v1nssl +Checking test 037 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1126,15 +1234,15 @@ Checking test 035 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 480.419641 -The maximum resident set size (KB) = 472304 +The total amount of wall time = 480.304215 +The maximum resident set size (KB) = 472372 -Test 035 rrfs_v1nssl PASS +Test 037 rrfs_v1nssl PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1nssl_nohailnoccn -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rrfs_v1nssl_nohailnoccn -Checking test 036 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_v1nssl_nohailnoccn +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rrfs_v1nssl_nohailnoccn +Checking test 038 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1148,15 +1256,15 @@ Checking test 036 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 465.245528 -The maximum resident set size (KB) = 465980 +The total amount of wall time = 464.543532 +The maximum resident set size (KB) = 466192 -Test 036 rrfs_v1nssl_nohailnoccn PASS +Test 038 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_conus13km_hrrr_warm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rrfs_conus13km_hrrr_warm -Checking test 037 rrfs_conus13km_hrrr_warm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_conus13km_hrrr_warm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rrfs_conus13km_hrrr_warm +Checking test 039 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1164,15 +1272,15 @@ Checking test 037 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 237.974324 -The maximum resident set size (KB) = 598560 +The total amount of wall time = 248.060510 +The maximum resident set size (KB) = 598708 -Test 037 rrfs_conus13km_hrrr_warm PASS +Test 039 rrfs_conus13km_hrrr_warm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rrfs_conus13km_radar_tten_warm -Checking test 038 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rrfs_conus13km_radar_tten_warm +Checking test 040 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1180,15 +1288,15 @@ Checking test 038 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 253.406003 -The maximum resident set size (KB) = 601624 +The total amount of wall time = 261.538020 +The maximum resident set size (KB) = 601320 -Test 038 rrfs_conus13km_radar_tten_warm PASS +Test 040 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_rrtmgp -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_rrtmgp -Checking test 039 control_rrtmgp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_rrtmgp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_rrtmgp +Checking test 041 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1198,15 +1306,15 @@ Checking test 039 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 227.928946 -The maximum resident set size (KB) = 545756 +The total amount of wall time = 225.294379 +The maximum resident set size (KB) = 562292 -Test 039 control_rrtmgp PASS +Test 041 control_rrtmgp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_rrtmgp_c192 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_rrtmgp_c192 -Checking test 040 control_rrtmgp_c192 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_rrtmgp_c192 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_rrtmgp_c192 +Checking test 042 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1216,15 +1324,15 @@ Checking test 040 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 610.733750 -The maximum resident set size (KB) = 746972 +The total amount of wall time = 614.546427 +The maximum resident set size (KB) = 764872 -Test 040 control_rrtmgp_c192 PASS +Test 042 control_rrtmgp_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmg -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_csawmg -Checking test 041 control_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_csawmg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_csawmg +Checking test 043 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1234,15 +1342,15 @@ Checking test 041 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 360.277068 -The maximum resident set size (KB) = 487100 +The total amount of wall time = 360.132842 +The maximum resident set size (KB) = 487036 -Test 041 control_csawmg PASS +Test 043 control_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmgt -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_csawmgt -Checking test 042 control_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_csawmgt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_csawmgt +Checking test 044 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1252,15 +1360,15 @@ Checking test 042 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 358.902514 -The maximum resident set size (KB) = 486868 +The total amount of wall time = 356.770188 +The maximum resident set size (KB) = 486900 -Test 042 control_csawmgt PASS +Test 044 control_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_flake -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_flake -Checking test 043 control_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_flake +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_flake +Checking test 045 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1270,15 +1378,15 @@ Checking test 043 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 234.215767 -The maximum resident set size (KB) = 490268 +The total amount of wall time = 231.771485 +The maximum resident set size (KB) = 490356 -Test 043 control_flake PASS +Test 045 control_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_ras -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_ras -Checking test 044 control_ras results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_ras +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_ras +Checking test 046 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1288,41 +1396,41 @@ Checking test 044 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 193.985682 -The maximum resident set size (KB) = 454516 +The total amount of wall time = 194.336978 +The maximum resident set size (KB) = 456140 -Test 044 control_ras PASS +Test 046 control_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wam_repro -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_wam_repro -Checking test 045 control_wam results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_wam_repro +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_wam_repro +Checking test 047 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 124.471054 -The maximum resident set size (KB) = 168712 +The total amount of wall time = 120.866328 +The maximum resident set size (KB) = 168644 -Test 045 control_wam PASS +Test 047 control_wam PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_debug -Checking test 046 control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_debug +Checking test 048 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 144.580357 -The maximum resident set size (KB) = 583368 +The total amount of wall time = 144.644203 +The maximum resident set size (KB) = 583560 -Test 046 control_debug PASS +Test 048 control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_CubedSphereGrid_debug -Checking test 047 control_CubedSphereGrid_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_CubedSphereGrid_debug +Checking test 049 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1348,429 +1456,429 @@ Checking test 047 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 154.185990 -The maximum resident set size (KB) = 584352 +The total amount of wall time = 152.783727 +The maximum resident set size (KB) = 583624 -Test 047 control_CubedSphereGrid_debug PASS +Test 049 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_wrtGauss_netcdf_parallel_debug -Checking test 048 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_wrtGauss_netcdf_parallel_debug +Checking test 050 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 147.376762 -The maximum resident set size (KB) = 583396 +The total amount of wall time = 145.903888 +The maximum resident set size (KB) = 583492 -Test 048 control_wrtGauss_netcdf_parallel_debug PASS +Test 050 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_stochy_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_stochy_debug -Checking test 049 control_stochy_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_stochy_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_stochy_debug +Checking test 051 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.229641 -The maximum resident set size (KB) = 589612 +The total amount of wall time = 164.946244 +The maximum resident set size (KB) = 589664 -Test 049 control_stochy_debug PASS +Test 051 control_stochy_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_lndp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_lndp_debug -Checking test 050 control_lndp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_lndp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_lndp_debug +Checking test 052 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 149.105180 -The maximum resident set size (KB) = 587572 +The total amount of wall time = 150.401161 +The maximum resident set size (KB) = 587552 -Test 050 control_lndp_debug PASS +Test 052 control_lndp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_rrtmgp_debug -Checking test 051 control_rrtmgp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_rrtmgp_debug +Checking test 053 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.725291 -The maximum resident set size (KB) = 687812 +The total amount of wall time = 159.813601 +The maximum resident set size (KB) = 704580 -Test 051 control_rrtmgp_debug PASS +Test 053 control_rrtmgp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_csawmg_debug -Checking test 052 control_csawmg_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_csawmg_debug +Checking test 054 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 233.485463 -The maximum resident set size (KB) = 625696 +The total amount of wall time = 233.242616 +The maximum resident set size (KB) = 625732 -Test 052 control_csawmg_debug PASS +Test 054 control_csawmg_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_csawmgt_debug -Checking test 053 control_csawmgt_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_csawmgt_debug +Checking test 055 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 229.099487 -The maximum resident set size (KB) = 625328 +The total amount of wall time = 229.992334 +The maximum resident set size (KB) = 625360 -Test 053 control_csawmgt_debug PASS +Test 055 control_csawmgt_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_ras_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_ras_debug -Checking test 054 control_ras_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_ras_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_ras_debug +Checking test 056 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 150.576578 -The maximum resident set size (KB) = 595300 +The total amount of wall time = 150.262431 +The maximum resident set size (KB) = 595288 -Test 054 control_ras_debug PASS +Test 056 control_ras_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_diag_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_diag_debug -Checking test 055 control_diag_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_diag_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_diag_debug +Checking test 057 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 154.790568 -The maximum resident set size (KB) = 641588 +The total amount of wall time = 152.908282 +The maximum resident set size (KB) = 641624 -Test 055 control_diag_debug PASS +Test 057 control_diag_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_debug_p8 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_debug_p8 -Checking test 056 control_debug_p8 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_debug_p8 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_debug_p8 +Checking test 058 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.138395 -The maximum resident set size (KB) = 971408 +The total amount of wall time = 161.046707 +The maximum resident set size (KB) = 971396 -Test 056 control_debug_p8 PASS +Test 058 control_debug_p8 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_thompson_debug -Checking test 057 control_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_thompson_debug +Checking test 059 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 174.595791 -The maximum resident set size (KB) = 943244 +The total amount of wall time = 175.063004 +The maximum resident set size (KB) = 943220 -Test 057 control_thompson_debug PASS +Test 059 control_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_thompson_no_aero_debug -Checking test 058 control_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_thompson_no_aero_debug +Checking test 060 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.505471 -The maximum resident set size (KB) = 940212 +The total amount of wall time = 164.102136 +The maximum resident set size (KB) = 940016 -Test 058 control_thompson_no_aero_debug PASS +Test 060 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_debug_extdiag -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_thompson_extdiag_debug -Checking test 059 control_thompson_extdiag_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_debug_extdiag +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_thompson_extdiag_debug +Checking test 061 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 183.085401 -The maximum resident set size (KB) = 973148 +The total amount of wall time = 183.026719 +The maximum resident set size (KB) = 974144 -Test 059 control_thompson_extdiag_debug PASS +Test 061 control_thompson_extdiag_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_thompson_progcld_thompson_debug -Checking test 060 control_thompson_progcld_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_thompson_progcld_thompson_debug +Checking test 062 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 174.898970 -The maximum resident set size (KB) = 943220 +The total amount of wall time = 174.580047 +The maximum resident set size (KB) = 943312 -Test 060 control_thompson_progcld_thompson_debug PASS +Test 062 control_thompson_progcld_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_debug -Checking test 061 regional_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/regional_debug +Checking test 063 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 248.171288 -The maximum resident set size (KB) = 553240 +The total amount of wall time = 246.872187 +The maximum resident set size (KB) = 553228 -Test 061 regional_debug PASS +Test 063 regional_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_control_debug -Checking test 062 rap_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_control_debug +Checking test 064 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.626420 -The maximum resident set size (KB) = 949572 +The total amount of wall time = 269.409040 +The maximum resident set size (KB) = 949828 -Test 062 rap_control_debug PASS +Test 064 rap_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_unified_drag_suite_debug -Checking test 063 rap_unified_drag_suite_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_unified_drag_suite_debug +Checking test 065 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.084650 -The maximum resident set size (KB) = 949552 +The total amount of wall time = 267.521437 +The maximum resident set size (KB) = 949772 -Test 063 rap_unified_drag_suite_debug PASS +Test 065 rap_unified_drag_suite_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_diag_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_diag_debug -Checking test 064 rap_diag_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_diag_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_diag_debug +Checking test 066 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.660524 -The maximum resident set size (KB) = 1032660 +The total amount of wall time = 283.605357 +The maximum resident set size (KB) = 1032700 -Test 064 rap_diag_debug PASS +Test 066 rap_diag_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_cires_ugwp_debug -Checking test 065 rap_cires_ugwp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_cires_ugwp_debug +Checking test 067 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 274.565453 -The maximum resident set size (KB) = 954624 +The total amount of wall time = 275.520894 +The maximum resident set size (KB) = 954480 -Test 065 rap_cires_ugwp_debug PASS +Test 067 rap_cires_ugwp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_unified_ugwp_debug -Checking test 066 rap_unified_ugwp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_unified_ugwp_debug +Checking test 068 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 275.828699 -The maximum resident set size (KB) = 949560 +The total amount of wall time = 273.698353 +The maximum resident set size (KB) = 949532 -Test 066 rap_unified_ugwp_debug PASS +Test 068 rap_unified_ugwp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_lndp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_lndp_debug -Checking test 067 rap_lndp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_lndp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_lndp_debug +Checking test 069 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.974448 -The maximum resident set size (KB) = 954128 +The total amount of wall time = 272.726088 +The maximum resident set size (KB) = 950392 -Test 067 rap_lndp_debug PASS +Test 069 rap_lndp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_flake_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_flake_debug -Checking test 068 rap_flake_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_flake_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_flake_debug +Checking test 070 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.298791 -The maximum resident set size (KB) = 949784 +The total amount of wall time = 271.235738 +The maximum resident set size (KB) = 949596 -Test 068 rap_flake_debug PASS +Test 070 rap_flake_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_progcld_thompson_debug -Checking test 069 rap_progcld_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_progcld_thompson_debug +Checking test 071 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.106250 -The maximum resident set size (KB) = 949752 +The total amount of wall time = 268.668409 +The maximum resident set size (KB) = 949528 -Test 069 rap_progcld_thompson_debug PASS +Test 071 rap_progcld_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_noah_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_noah_debug -Checking test 070 rap_noah_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_noah_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_noah_debug +Checking test 072 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 264.560426 -The maximum resident set size (KB) = 948548 +The total amount of wall time = 264.948296 +The maximum resident set size (KB) = 948644 -Test 070 rap_noah_debug PASS +Test 072 rap_noah_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_rrtmgp_debug -Checking test 071 rap_rrtmgp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_rrtmgp_debug +Checking test 073 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 451.184487 -The maximum resident set size (KB) = 1055608 +The total amount of wall time = 450.743707 +The maximum resident set size (KB) = 1072352 -Test 071 rap_rrtmgp_debug PASS +Test 073 rap_rrtmgp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_sfcdiff_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_sfcdiff_debug -Checking test 072 rap_sfcdiff_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_sfcdiff_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_sfcdiff_debug +Checking test 074 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.533863 -The maximum resident set size (KB) = 949460 +The total amount of wall time = 271.281369 +The maximum resident set size (KB) = 949520 -Test 072 rap_sfcdiff_debug PASS +Test 074 rap_sfcdiff_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 073 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 075 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 439.403465 -The maximum resident set size (KB) = 949404 +The total amount of wall time = 439.186987 +The maximum resident set size (KB) = 952240 -Test 073 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 075 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rrfs_v1beta_debug -Checking test 074 rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/rrfs_v1beta_debug +Checking test 076 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.932946 -The maximum resident set size (KB) = 948384 +The total amount of wall time = 264.702033 +The maximum resident set size (KB) = 950108 -Test 074 rrfs_v1beta_debug PASS +Test 076 rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wam_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_wam_debug -Checking test 075 control_wam_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_wam_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/control_wam_debug +Checking test 077 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 273.286870 -The maximum resident set size (KB) = 197968 +The total amount of wall time = 273.084522 +The maximum resident set size (KB) = 197876 -Test 075 control_wam_debug PASS +Test 077 control_wam_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_atm -Checking test 076 hafs_regional_atm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/hafs_regional_atm +Checking test 078 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 344.339676 -The maximum resident set size (KB) = 644536 +The total amount of wall time = 335.980993 +The maximum resident set size (KB) = 646624 -Test 076 hafs_regional_atm PASS +Test 078 hafs_regional_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_atm_thompson_gfdlsf -Checking test 077 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm_thompson_gfdlsf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/hafs_regional_atm_thompson_gfdlsf +Checking test 079 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 380.704051 -The maximum resident set size (KB) = 999424 +The total amount of wall time = 381.964324 +The maximum resident set size (KB) = 998500 -Test 077 hafs_regional_atm_thompson_gfdlsf PASS +Test 079 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_ocn -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_atm_ocn -Checking test 078 hafs_regional_atm_ocn results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm_ocn +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/hafs_regional_atm_ocn +Checking test 080 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -1778,29 +1886,29 @@ Checking test 078 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 -The total amount of wall time = 511.717155 -The maximum resident set size (KB) = 641876 +The total amount of wall time = 501.144108 +The maximum resident set size (KB) = 641564 -Test 078 hafs_regional_atm_ocn PASS +Test 080 hafs_regional_atm_ocn PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_wav -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_atm_wav -Checking test 079 hafs_regional_atm_wav results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm_wav +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/hafs_regional_atm_wav +Checking test 081 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 966.013061 -The maximum resident set size (KB) = 639152 +The total amount of wall time = 922.207442 +The maximum resident set size (KB) = 639196 -Test 079 hafs_regional_atm_wav PASS +Test 081 hafs_regional_atm_wav PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_ocn_wav -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_atm_ocn_wav -Checking test 080 hafs_regional_atm_ocn_wav results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm_ocn_wav +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/hafs_regional_atm_ocn_wav +Checking test 082 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -1808,29 +1916,29 @@ Checking test 080 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 996.625021 -The maximum resident set size (KB) = 641888 +The total amount of wall time = 1007.282950 +The maximum resident set size (KB) = 641892 -Test 080 hafs_regional_atm_ocn_wav PASS +Test 082 hafs_regional_atm_ocn_wav PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_1nest_atm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_1nest_atm -Checking test 081 hafs_regional_1nest_atm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_1nest_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/hafs_regional_1nest_atm +Checking test 083 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 -The total amount of wall time = 367.968114 -The maximum resident set size (KB) = 241944 +The total amount of wall time = 370.017888 +The maximum resident set size (KB) = 241516 -Test 081 hafs_regional_1nest_atm PASS +Test 083 hafs_regional_1nest_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_telescopic_2nests_atm -Checking test 082 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/hafs_regional_telescopic_2nests_atm +Checking test 084 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -1838,26 +1946,26 @@ Checking test 082 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 384.908137 -The maximum resident set size (KB) = 246232 +The total amount of wall time = 386.077512 +The maximum resident set size (KB) = 246916 -Test 082 hafs_regional_telescopic_2nests_atm PASS +Test 084 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_global_1nest_atm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_global_1nest_atm -Checking test 083 hafs_global_1nest_atm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_global_1nest_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_46622/hafs_global_1nest_atm +Checking test 085 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 -The total amount of wall time = 166.289941 -The maximum resident set size (KB) = 145984 +The total amount of wall time = 167.523227 +The maximum resident set size (KB) = 145444 -Test 083 hafs_global_1nest_atm PASS +Test 085 hafs_global_1nest_atm PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 4 16:15:34 UTC 2022 -Elapsed time: 00h:40m:04s. Have a nice day! +Tue Apr 5 19:59:10 UTC 2022 +Elapsed time: 00h:41m:28s. Have a nice day! From 30086335257c3182e1ea1faa47da604c09d1c333 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 5 Apr 2022 20:56:44 +0000 Subject: [PATCH 30/57] [AutoRT] gaea.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_gaea.intel.log | 1695 ++++++++++++++------------ 1 file changed, 924 insertions(+), 771 deletions(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 3f11de1a3e..a4bd4ca669 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,24 +1,24 @@ -Mon Apr 4 11:36:05 EDT 2022 +Tue Apr 5 14:38:12 EDT 2022 Start Regression test -Compile 001 elapsed time 615 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 251 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 425 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 232 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 210 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 224 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 430 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 432 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 266 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 758 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_control_p8 +Compile 001 elapsed time 545 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 238 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 423 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 221 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 196 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 209 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 456 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 431 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 254 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 126 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 396 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 407.494540 - 0: The maximum resident set size (KB) = 1048496 + 0: The total amount of wall time = 391.988947 + 0: The maximum resident set size (KB) = 1048464 Test 001 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 542.929375 - 0: The maximum resident set size (KB) = 1463836 + 0: The total amount of wall time = 517.001451 + 0: The maximum resident set size (KB) = 1463964 Test 002 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 371.055999 - 0: The maximum resident set size (KB) = 1225072 + 0: The total amount of wall time = 382.409289 + 0: The maximum resident set size (KB) = 1202144 Test 003 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -267,27 +267,19 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 312.282737 - 0: The maximum resident set size (KB) = 942592 + 0: The total amount of wall time = 355.426525 + 0: The maximum resident set size (KB) = 943192 Test 004 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p7_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_control_p7_rrtmgp -Checking test 005 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_bmark_p7 +Checking test 005 cpld_bmark_p7 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -321,21 +313,21 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/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_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 324.595021 - 0: The maximum resident set size (KB) = 617848 + 0: The total amount of wall time = 1031.320902 + 0: The maximum resident set size (KB) = 1160464 -Test 005 cpld_control_p7_rrtmgp PASS +Test 005 cpld_bmark_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_bmark_p7 -Checking test 006 cpld_bmark_p7 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_bmark_p7_rrtmgp +Checking test 006 cpld_bmark_p7_rrtmgp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -379,14 +371,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 953.400741 - 0: The maximum resident set size (KB) = 1160352 + 0: The total amount of wall time = 1077.543296 + 0: The maximum resident set size (KB) = 1284376 -Test 006 cpld_bmark_p7 PASS +Test 006 cpld_bmark_p7_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -432,15 +424,68 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1228.283530 - 0: The maximum resident set size (KB) = 2736688 + 0: The total amount of wall time = 1222.984812 + 0: The maximum resident set size (KB) = 2709792 Test 007 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_control_c96_p8 -Checking test 008 cpld_control_c96_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_bmark_p8_rrtmgp +Checking test 008 cpld_bmark_p8_rrtmgp results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + + 0: The total amount of wall time = 1347.985106 + 0: The maximum resident set size (KB) = 2901728 + +Test 008 cpld_bmark_p8_rrtmgp PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_control_c96_p8 +Checking test 009 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -502,15 +547,15 @@ Checking test 008 cpld_control_c96_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 = 360.994952 - 0: The maximum resident set size (KB) = 1070140 + 0: The total amount of wall time = 373.852979 + 0: The maximum resident set size (KB) = 1048012 -Test 008 cpld_control_c96_p8 PASS +Test 009 cpld_control_c96_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_restart_c96_p8 -Checking test 009 cpld_restart_c96_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_restart_c96_p8 +Checking test 010 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -560,15 +605,15 @@ Checking test 009 cpld_restart_c96_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 = 229.953463 - 0: The maximum resident set size (KB) = 1018120 + 0: The total amount of wall time = 233.943094 + 0: The maximum resident set size (KB) = 1018472 -Test 009 cpld_restart_c96_p8 PASS +Test 010 cpld_restart_c96_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_control_c192_p8 -Checking test 010 cpld_control_c192_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_control_c192_p8 +Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -618,15 +663,15 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1689.999110 - 0: The maximum resident set size (KB) = 1436812 + 0: The total amount of wall time = 1731.767310 + 0: The maximum resident set size (KB) = 1457544 -Test 010 cpld_control_c192_p8 PASS +Test 011 cpld_control_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_restart_c192_p8 -Checking test 011 cpld_restart_c192_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_restart_c192_p8 +Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -676,15 +721,15 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1155.419326 - 0: The maximum resident set size (KB) = 1649772 + 0: The total amount of wall time = 1158.765082 + 0: The maximum resident set size (KB) = 1647492 -Test 011 cpld_restart_c192_p8 PASS +Test 012 cpld_restart_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_control_c384_p8 -Checking test 012 cpld_control_c384_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_control_c384_p8 +Checking test 013 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -727,15 +772,15 @@ Checking test 012 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1388.476540 - 0: The maximum resident set size (KB) = 2739460 + 0: The total amount of wall time = 1432.347760 + 0: The maximum resident set size (KB) = 2734416 -Test 012 cpld_control_c384_p8 PASS +Test 013 cpld_control_c384_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_restart_c384_p8 -Checking test 013 cpld_restart_c384_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_restart_c384_p8 +Checking test 014 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -778,15 +823,15 @@ Checking test 013 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 868.888412 - 0: The maximum resident set size (KB) = 2706304 + 0: The total amount of wall time = 892.654938 + 0: The maximum resident set size (KB) = 2706084 -Test 013 cpld_restart_c384_p8 PASS +Test 014 cpld_restart_c384_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_debug_p8 -Checking test 014 cpld_debug_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -836,15 +881,15 @@ Checking test 014 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 975.886279 - 0: The maximum resident set size (KB) = 1201060 + 0: The total amount of wall time = 985.991422 + 0: The maximum resident set size (KB) = 1147464 -Test 014 cpld_debug_p8 PASS +Test 015 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control -Checking test 015 control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control +Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -890,15 +935,15 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.961241 - 0: The maximum resident set size (KB) = 435136 + 0: The total amount of wall time = 134.873286 + 0: The maximum resident set size (KB) = 435148 -Test 015 control PASS +Test 016 control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_decomp -Checking test 016 control_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_decomp +Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -940,29 +985,29 @@ Checking test 016 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 140.494040 - 0: The maximum resident set size (KB) = 431644 + 0: The total amount of wall time = 141.149538 + 0: The maximum resident set size (KB) = 431900 -Test 016 control_decomp PASS +Test 017 control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_2dwrtdecomp -Checking test 017 control_2dwrtdecomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_2dwrtdecomp +Checking test 018 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.872858 - 0: The maximum resident set size (KB) = 435392 + 0: The total amount of wall time = 158.614113 + 0: The maximum resident set size (KB) = 435300 -Test 017 control_2dwrtdecomp PASS +Test 018 control_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_2threads -Checking test 018 control_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_2threads +Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1004,15 +1049,15 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.118008 - 0: The maximum resident set size (KB) = 487952 + 0: The total amount of wall time = 203.157753 + 0: The maximum resident set size (KB) = 485924 -Test 018 control_2threads PASS +Test 019 control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_restart -Checking test 019 control_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_restart +Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1050,15 +1095,15 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.153947 - 0: The maximum resident set size (KB) = 170812 + 0: The total amount of wall time = 72.088988 + 0: The maximum resident set size (KB) = 170640 -Test 019 control_restart PASS +Test 020 control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_fhzero -Checking test 020 control_fhzero results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_fhzero +Checking test 021 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1100,15 +1145,15 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 130.532198 - 0: The maximum resident set size (KB) = 435288 + 0: The total amount of wall time = 159.039121 + 0: The maximum resident set size (KB) = 435212 -Test 020 control_fhzero PASS +Test 021 control_fhzero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1134,15 +1179,15 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.267746 - 0: The maximum resident set size (KB) = 435180 + 0: The total amount of wall time = 157.157455 + 0: The maximum resident set size (KB) = 435000 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_latlon -Checking test 022 control_latlon results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_latlon +Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1152,15 +1197,15 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 159.045340 - 0: The maximum resident set size (KB) = 435340 + 0: The total amount of wall time = 133.848865 + 0: The maximum resident set size (KB) = 435324 -Test 022 control_latlon PASS +Test 023 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1170,15 +1215,15 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 162.241165 - 0: The maximum resident set size (KB) = 435360 + 0: The total amount of wall time = 138.536571 + 0: The maximum resident set size (KB) = 435120 -Test 023 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_c48 -Checking test 024 control_c48 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_c48 +Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1216,15 +1261,15 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 366.945019 -0: The maximum resident set size (KB) = 622784 +0: The total amount of wall time = 412.436350 +0: The maximum resident set size (KB) = 625612 -Test 024 control_c48 PASS +Test 025 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_c192 -Checking test 025 control_c192 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_c192 +Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1234,15 +1279,15 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 552.352394 - 0: The maximum resident set size (KB) = 535212 + 0: The total amount of wall time = 585.679434 + 0: The maximum resident set size (KB) = 535252 -Test 025 control_c192 PASS +Test 026 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_c384 -Checking test 026 control_c384 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_c384 +Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1252,15 +1297,15 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 951.026181 - 0: The maximum resident set size (KB) = 792640 + 0: The total amount of wall time = 961.126827 + 0: The maximum resident set size (KB) = 792264 -Test 026 control_c384 PASS +Test 027 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_c384gdas -Checking test 027 control_c384gdas results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_c384gdas +Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1302,15 +1347,15 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 852.680183 - 0: The maximum resident set size (KB) = 939832 + 0: The total amount of wall time = 875.841285 + 0: The maximum resident set size (KB) = 939824 -Test 027 control_c384gdas PASS +Test 028 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_stochy -Checking test 028 control_stochy results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_stochy +Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1320,29 +1365,29 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 111.135823 - 0: The maximum resident set size (KB) = 437384 + 0: The total amount of wall time = 88.879976 + 0: The maximum resident set size (KB) = 437344 -Test 028 control_stochy PASS +Test 029 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_stochy_restart -Checking test 029 control_stochy_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_stochy_restart +Checking test 030 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 = 48.972298 - 0: The maximum resident set size (KB) = 187216 + 0: The total amount of wall time = 48.920331 + 0: The maximum resident set size (KB) = 187176 -Test 029 control_stochy_restart PASS +Test 030 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_lndp -Checking test 030 control_lndp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_lndp +Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1352,15 +1397,15 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.209677 - 0: The maximum resident set size (KB) = 439072 + 0: The total amount of wall time = 106.778682 + 0: The maximum resident set size (KB) = 439264 -Test 030 control_lndp PASS +Test 031 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_iovr4 -Checking test 031 control_iovr4 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_iovr4 +Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1374,15 +1419,15 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.781648 - 0: The maximum resident set size (KB) = 435380 + 0: The total amount of wall time = 159.631682 + 0: The maximum resident set size (KB) = 435324 -Test 031 control_iovr4 PASS +Test 032 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_iovr5 -Checking test 032 control_iovr5 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_iovr5 +Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1396,15 +1441,15 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 151.856942 - 0: The maximum resident set size (KB) = 435420 + 0: The total amount of wall time = 138.175481 + 0: The maximum resident set size (KB) = 435336 -Test 032 control_iovr5 PASS +Test 033 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_p8 -Checking test 033 control_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_p8 +Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1450,15 +1495,15 @@ Checking test 033 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.214325 - 0: The maximum resident set size (KB) = 821648 + 0: The total amount of wall time = 169.174951 + 0: The maximum resident set size (KB) = 821680 -Test 033 control_p8 PASS +Test 034 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_restart_p8 -Checking test 034 control_restart_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_restart_p8 +Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1496,15 +1541,15 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.847750 - 0: The maximum resident set size (KB) = 557812 + 0: The total amount of wall time = 113.129820 + 0: The maximum resident set size (KB) = 557888 -Test 034 control_restart_p8 PASS +Test 035 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_decomp_p8 -Checking test 035 control_decomp_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_decomp_p8 +Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1546,15 +1591,15 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.192906 - 0: The maximum resident set size (KB) = 819496 + 0: The total amount of wall time = 181.391803 + 0: The maximum resident set size (KB) = 819448 -Test 035 control_decomp_p8 PASS +Test 036 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_2threads_p8 -Checking test 036 control_2threads_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_2threads_p8 +Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1596,15 +1641,15 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.856779 - 0: The maximum resident set size (KB) = 897548 + 0: The total amount of wall time = 231.224507 + 0: The maximum resident set size (KB) = 897212 -Test 036 control_2threads_p8 PASS +Test 037 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p7_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_p7_rrtmgp -Checking test 037 control_p7_rrtmgp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p7_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_p7_rrtmgp +Checking test 038 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1650,15 +1695,69 @@ Checking test 037 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 225.437017 - 0: The maximum resident set size (KB) = 564676 + 0: The total amount of wall time = 229.261077 + 0: The maximum resident set size (KB) = 583412 -Test 037 control_p7_rrtmgp PASS +Test 038 control_p7_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_control -Checking test 038 regional_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_p8_rrtmgp +Checking test 039 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 236.784900 + 0: The maximum resident set size (KB) = 911980 + +Test 039 control_p8_rrtmgp PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_control +Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1668,58 +1767,58 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 346.207935 - 0: The maximum resident set size (KB) = 541024 + 0: The total amount of wall time = 347.996586 + 0: The maximum resident set size (KB) = 541080 -Test 038 regional_control PASS +Test 040 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_restart -Checking test 039 regional_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_restart +Checking test 041 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 219.509273 - 0: The maximum resident set size (KB) = 540052 + 0: The total amount of wall time = 211.003568 + 0: The maximum resident set size (KB) = 539892 -Test 039 regional_restart PASS +Test 041 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_control_2dwrtdecomp -Checking test 040 regional_control_2dwrtdecomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_control_2dwrtdecomp +Checking test 042 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 341.306411 - 0: The maximum resident set size (KB) = 541020 + 0: The total amount of wall time = 344.413788 + 0: The maximum resident set size (KB) = 540952 -Test 040 regional_control_2dwrtdecomp PASS +Test 042 regional_control_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_noquilt -Checking test 041 regional_noquilt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_noquilt +Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 363.194051 - 0: The maximum resident set size (KB) = 547680 + 0: The total amount of wall time = 363.872473 + 0: The maximum resident set size (KB) = 547800 -Test 041 regional_noquilt PASS +Test 043 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_2threads -Checking test 042 regional_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_2threads +Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1729,15 +1828,15 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 274.712620 - 0: The maximum resident set size (KB) = 542736 + 0: The total amount of wall time = 279.820388 + 0: The maximum resident set size (KB) = 542880 -Test 042 regional_2threads PASS +Test 044 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_hafs -Checking test 043 regional_hafs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_hafs +Checking test 045 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1745,29 +1844,29 @@ Checking test 043 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.531388 - 0: The maximum resident set size (KB) = 542824 + 0: The total amount of wall time = 367.997205 + 0: The maximum resident set size (KB) = 542780 -Test 043 regional_hafs PASS +Test 045 regional_hafs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_netcdf_parallel -Checking test 044 regional_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_netcdf_parallel +Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 402.045652 - 0: The maximum resident set size (KB) = 537964 + 0: The total amount of wall time = 379.099131 + 0: The maximum resident set size (KB) = 538164 -Test 044 regional_netcdf_parallel PASS +Test 046 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_RRTMGP -Checking test 045 regional_RRTMGP results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_RRTMGP +Checking test 047 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1777,15 +1876,15 @@ Checking test 045 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 479.599731 - 0: The maximum resident set size (KB) = 665164 + 0: The total amount of wall time = 489.734378 + 0: The maximum resident set size (KB) = 659256 -Test 045 regional_RRTMGP PASS +Test 047 regional_RRTMGP PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_3km -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_3km -Checking test 046 regional_3km results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_3km +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_3km +Checking test 048 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1795,15 +1894,69 @@ Checking test 046 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 284.746620 - 0: The maximum resident set size (KB) = 570900 + 0: The total amount of wall time = 267.669225 + 0: The maximum resident set size (KB) = 570960 + +Test 048 regional_3km PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_control +Checking test 049 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 415.358568 + 0: The maximum resident set size (KB) = 802444 -Test 046 regional_3km PASS +Test 049 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_control -Checking test 047 rap_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_rrtmgp +Checking test 050 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1849,15 +2002,15 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 406.479566 - 0: The maximum resident set size (KB) = 802288 + 0: The total amount of wall time = 466.940606 + 0: The maximum resident set size (KB) = 922788 -Test 047 rap_control PASS +Test 050 rap_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_spp_sppt_shum_skeb +Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1867,15 +2020,15 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 325.357990 - 0: The maximum resident set size (KB) = 873984 + 0: The total amount of wall time = 344.034599 + 0: The maximum resident set size (KB) = 874056 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_2threads -Checking test 049 rap_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_2threads +Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1921,15 +2074,15 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 528.389924 - 0: The maximum resident set size (KB) = 864392 + 0: The total amount of wall time = 536.943533 + 0: The maximum resident set size (KB) = 864024 -Test 049 rap_2threads PASS +Test 052 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_restart -Checking test 050 rap_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_restart +Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1967,15 +2120,15 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.692846 - 0: The maximum resident set size (KB) = 544300 + 0: The total amount of wall time = 224.631249 + 0: The maximum resident set size (KB) = 544256 -Test 050 rap_restart PASS +Test 053 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_sfcdiff -Checking test 051 rap_sfcdiff results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_sfcdiff +Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2021,15 +2174,15 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 388.306602 - 0: The maximum resident set size (KB) = 799488 + 0: The total amount of wall time = 414.586157 + 0: The maximum resident set size (KB) = 799384 -Test 051 rap_sfcdiff PASS +Test 054 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_sfcdiff_restart +Checking test 055 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2067,15 +2220,15 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.238924 - 0: The maximum resident set size (KB) = 544732 + 0: The total amount of wall time = 203.648499 + 0: The maximum resident set size (KB) = 545316 -Test 052 rap_sfcdiff_restart PASS +Test 055 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hrrr_control -Checking test 053 hrrr_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hrrr_control +Checking test 056 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2121,15 +2274,15 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.530679 - 0: The maximum resident set size (KB) = 798296 + 0: The total amount of wall time = 399.002100 + 0: The maximum resident set size (KB) = 798268 -Test 053 hrrr_control PASS +Test 056 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rrfs_v1beta -Checking test 054 rrfs_v1beta results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rrfs_v1beta +Checking test 057 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2175,15 +2328,15 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 383.139574 - 0: The maximum resident set size (KB) = 798464 + 0: The total amount of wall time = 410.397195 + 0: The maximum resident set size (KB) = 798260 -Test 054 rrfs_v1beta PASS +Test 057 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rrfs_v1nssl -Checking test 055 rrfs_v1nssl results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rrfs_v1nssl +Checking test 058 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2197,15 +2350,15 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 505.889055 - 0: The maximum resident set size (KB) = 489084 + 0: The total amount of wall time = 509.723449 + 0: The maximum resident set size (KB) = 489072 -Test 055 rrfs_v1nssl PASS +Test 058 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rrfs_v1nssl_nohailnoccn -Checking test 056 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rrfs_v1nssl_nohailnoccn +Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2219,15 +2372,15 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 492.343977 - 0: The maximum resident set size (KB) = 481048 + 0: The total amount of wall time = 470.005714 + 0: The maximum resident set size (KB) = 481460 -Test 056 rrfs_v1nssl_nohailnoccn PASS +Test 059 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rrfs_conus13km_hrrr_warm -Checking test 057 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rrfs_conus13km_hrrr_warm +Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2235,15 +2388,15 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 176.837058 - 0: The maximum resident set size (KB) = 613528 + 0: The total amount of wall time = 190.406260 + 0: The maximum resident set size (KB) = 613620 -Test 057 rrfs_conus13km_hrrr_warm PASS +Test 060 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rrfs_conus13km_radar_tten_warm -Checking test 058 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rrfs_conus13km_radar_tten_warm +Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2251,15 +2404,15 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 175.918801 - 0: The maximum resident set size (KB) = 615532 + 0: The total amount of wall time = 193.512317 + 0: The maximum resident set size (KB) = 615564 -Test 058 rrfs_conus13km_radar_tten_warm PASS +Test 061 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_rrtmgp -Checking test 059 control_rrtmgp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_rrtmgp +Checking test 062 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2269,15 +2422,15 @@ Checking test 059 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 221.820582 - 0: The maximum resident set size (KB) = 560740 + 0: The total amount of wall time = 246.981052 + 0: The maximum resident set size (KB) = 576012 -Test 059 control_rrtmgp PASS +Test 062 control_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_rrtmgp_c192 -Checking test 060 control_rrtmgp_c192 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_rrtmgp_c192 +Checking test 063 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2287,15 +2440,15 @@ Checking test 060 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 616.030426 - 0: The maximum resident set size (KB) = 760820 + 0: The total amount of wall time = 630.132495 + 0: The maximum resident set size (KB) = 776300 -Test 060 control_rrtmgp_c192 PASS +Test 063 control_rrtmgp_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_csawmgt -Checking test 061 control_csawmgt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_csawmgt +Checking test 064 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2305,15 +2458,15 @@ Checking test 061 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 351.886725 - 0: The maximum resident set size (KB) = 501616 + 0: The total amount of wall time = 372.880524 + 0: The maximum resident set size (KB) = 501660 -Test 061 control_csawmgt PASS +Test 064 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_flake -Checking test 062 control_flake results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_flake +Checking test 065 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2323,15 +2476,15 @@ Checking test 062 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 252.161568 - 0: The maximum resident set size (KB) = 505812 + 0: The total amount of wall time = 271.272519 + 0: The maximum resident set size (KB) = 505780 -Test 062 control_flake PASS +Test 065 control_flake PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_ras -Checking test 063 control_ras results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_ras +Checking test 066 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2341,15 +2494,15 @@ Checking test 063 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.173469 - 0: The maximum resident set size (KB) = 470472 + 0: The total amount of wall time = 210.889917 + 0: The maximum resident set size (KB) = 470320 -Test 063 control_ras PASS +Test 066 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_thompson -Checking test 064 control_thompson results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_thompson +Checking test 067 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2359,15 +2512,15 @@ Checking test 064 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 232.326127 - 0: The maximum resident set size (KB) = 818508 + 0: The total amount of wall time = 259.580274 + 0: The maximum resident set size (KB) = 818516 -Test 064 control_thompson PASS +Test 067 control_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_thompson_no_aero -Checking test 065 control_thompson_no_aero results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_thompson_no_aero +Checking test 068 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2377,55 +2530,55 @@ Checking test 065 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 220.241911 - 0: The maximum resident set size (KB) = 811068 + 0: The total amount of wall time = 244.747580 + 0: The maximum resident set size (KB) = 810988 -Test 065 control_thompson_no_aero PASS +Test 068 control_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_repro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_wam_repro -Checking test 066 control_wam results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_repro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_wam_repro +Checking test 069 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 148.027025 - 0: The maximum resident set size (KB) = 181888 + 0: The total amount of wall time = 121.474970 + 0: The maximum resident set size (KB) = 182128 -Test 066 control_wam PASS +Test 069 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_debug -Checking test 067 control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_debug +Checking test 070 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 = 149.159422 - 0: The maximum resident set size (KB) = 599472 + 0: The total amount of wall time = 151.219160 + 0: The maximum resident set size (KB) = 599376 -Test 067 control_debug PASS +Test 070 control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_2threads_debug -Checking test 068 control_2threads_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_2threads_debug +Checking test 071 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 256.953134 - 0: The maximum resident set size (KB) = 652108 + 0: The total amount of wall time = 259.535675 + 0: The maximum resident set size (KB) = 652040 -Test 068 control_2threads_debug PASS +Test 071 control_2threads_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_CubedSphereGrid_debug -Checking test 069 control_CubedSphereGrid_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_CubedSphereGrid_debug +Checking test 072 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2451,429 +2604,429 @@ Checking test 069 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 159.171261 - 0: The maximum resident set size (KB) = 598784 + 0: The total amount of wall time = 161.399510 + 0: The maximum resident set size (KB) = 598772 -Test 069 control_CubedSphereGrid_debug PASS +Test 072 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_wrtGauss_netcdf_parallel_debug -Checking test 070 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_wrtGauss_netcdf_parallel_debug +Checking test 073 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.657606 - 0: The maximum resident set size (KB) = 599512 + 0: The total amount of wall time = 163.258173 + 0: The maximum resident set size (KB) = 598768 -Test 070 control_wrtGauss_netcdf_parallel_debug PASS +Test 073 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_stochy_debug -Checking test 071 control_stochy_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_stochy_debug +Checking test 074 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 = 171.827552 - 0: The maximum resident set size (KB) = 603008 + 0: The total amount of wall time = 174.158628 + 0: The maximum resident set size (KB) = 603256 -Test 071 control_stochy_debug PASS +Test 074 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_lndp_debug -Checking test 072 control_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_lndp_debug +Checking test 075 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.710871 - 0: The maximum resident set size (KB) = 603088 + 0: The total amount of wall time = 155.439263 + 0: The maximum resident set size (KB) = 603232 -Test 072 control_lndp_debug PASS +Test 075 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_rrtmgp_debug -Checking test 073 control_rrtmgp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_rrtmgp_debug +Checking test 076 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.554382 - 0: The maximum resident set size (KB) = 702404 + 0: The total amount of wall time = 169.172136 + 0: The maximum resident set size (KB) = 719216 -Test 073 control_rrtmgp_debug PASS +Test 076 control_rrtmgp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_csawmg_debug -Checking test 074 control_csawmg_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_csawmg_debug +Checking test 077 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 244.866677 - 0: The maximum resident set size (KB) = 641400 + 0: The total amount of wall time = 253.470849 + 0: The maximum resident set size (KB) = 641132 -Test 074 control_csawmg_debug PASS +Test 077 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_csawmgt_debug -Checking test 075 control_csawmgt_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_csawmgt_debug +Checking test 078 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 = 283.833944 - 0: The maximum resident set size (KB) = 641000 + 0: The total amount of wall time = 249.649586 + 0: The maximum resident set size (KB) = 641300 -Test 075 control_csawmgt_debug PASS +Test 078 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_ras_debug -Checking test 076 control_ras_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_ras_debug +Checking test 079 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 = 155.737128 - 0: The maximum resident set size (KB) = 614472 + 0: The total amount of wall time = 155.944536 + 0: The maximum resident set size (KB) = 614884 -Test 076 control_ras_debug PASS +Test 079 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_diag_debug -Checking test 077 control_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_diag_debug +Checking test 080 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 = 158.128618 - 0: The maximum resident set size (KB) = 655732 + 0: The total amount of wall time = 161.426585 + 0: The maximum resident set size (KB) = 655956 -Test 077 control_diag_debug PASS +Test 080 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_debug_p8 -Checking test 078 control_debug_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_debug_p8 +Checking test 081 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 = 168.789340 - 0: The maximum resident set size (KB) = 985664 + 0: The total amount of wall time = 175.221572 + 0: The maximum resident set size (KB) = 987084 -Test 078 control_debug_p8 PASS +Test 081 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_thompson_debug -Checking test 079 control_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_thompson_debug +Checking test 082 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.578240 - 0: The maximum resident set size (KB) = 960336 + 0: The total amount of wall time = 181.436394 + 0: The maximum resident set size (KB) = 960104 -Test 079 control_thompson_debug PASS +Test 082 control_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_thompson_no_aero_debug -Checking test 080 control_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_thompson_no_aero_debug +Checking test 083 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.014260 - 0: The maximum resident set size (KB) = 954164 + 0: The total amount of wall time = 175.426790 + 0: The maximum resident set size (KB) = 953824 -Test 080 control_thompson_no_aero_debug PASS +Test 083 control_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug_extdiag -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_thompson_extdiag_debug -Checking test 081 control_thompson_extdiag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug_extdiag +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_thompson_extdiag_debug +Checking test 084 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 187.039368 - 0: The maximum resident set size (KB) = 989276 + 0: The total amount of wall time = 189.972501 + 0: The maximum resident set size (KB) = 989140 -Test 081 control_thompson_extdiag_debug PASS +Test 084 control_thompson_extdiag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_thompson_progcld_thompson_debug -Checking test 082 control_thompson_progcld_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_thompson_progcld_thompson_debug +Checking test 085 control_thompson_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 = 180.054907 - 0: The maximum resident set size (KB) = 957160 + 0: The total amount of wall time = 180.978803 + 0: The maximum resident set size (KB) = 959940 -Test 082 control_thompson_progcld_thompson_debug PASS +Test 085 control_thompson_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_debug -Checking test 083 regional_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_debug +Checking test 086 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 = 260.203236 - 0: The maximum resident set size (KB) = 565636 + 0: The total amount of wall time = 259.280928 + 0: The maximum resident set size (KB) = 565984 -Test 083 regional_debug PASS +Test 086 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_control_debug -Checking test 084 rap_control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_control_debug +Checking test 087 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 = 280.441291 - 0: The maximum resident set size (KB) = 963992 + 0: The total amount of wall time = 282.701971 + 0: The maximum resident set size (KB) = 964180 -Test 084 rap_control_debug PASS +Test 087 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_unified_drag_suite_debug -Checking test 085 rap_unified_drag_suite_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_unified_drag_suite_debug +Checking test 088 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 = 301.219409 - 0: The maximum resident set size (KB) = 963828 + 0: The total amount of wall time = 281.231740 + 0: The maximum resident set size (KB) = 963740 -Test 085 rap_unified_drag_suite_debug PASS +Test 088 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_diag_debug -Checking test 086 rap_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_diag_debug +Checking test 089 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 = 295.220597 - 0: The maximum resident set size (KB) = 1047540 + 0: The total amount of wall time = 298.471249 + 0: The maximum resident set size (KB) = 1047696 -Test 086 rap_diag_debug PASS +Test 089 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_cires_ugwp_debug -Checking test 087 rap_cires_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_cires_ugwp_debug +Checking test 090 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 = 284.242885 - 0: The maximum resident set size (KB) = 969600 + 0: The total amount of wall time = 288.092352 + 0: The maximum resident set size (KB) = 969504 -Test 087 rap_cires_ugwp_debug PASS +Test 090 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_unified_ugwp_debug -Checking test 088 rap_unified_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_unified_ugwp_debug +Checking test 091 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 = 285.518986 - 0: The maximum resident set size (KB) = 964020 + 0: The total amount of wall time = 288.418613 + 0: The maximum resident set size (KB) = 963912 -Test 088 rap_unified_ugwp_debug PASS +Test 091 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_lndp_debug -Checking test 089 rap_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_lndp_debug +Checking test 092 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 = 282.827656 - 0: The maximum resident set size (KB) = 968176 + 0: The total amount of wall time = 284.804189 + 0: The maximum resident set size (KB) = 967940 -Test 089 rap_lndp_debug PASS +Test 092 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_flake_debug -Checking test 090 rap_flake_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_flake_debug +Checking test 093 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 = 278.474028 - 0: The maximum resident set size (KB) = 963888 + 0: The total amount of wall time = 282.644252 + 0: The maximum resident set size (KB) = 964064 -Test 090 rap_flake_debug PASS +Test 093 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_progcld_thompson_debug -Checking test 091 rap_progcld_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_progcld_thompson_debug +Checking test 094 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 = 281.502372 - 0: The maximum resident set size (KB) = 963816 + 0: The total amount of wall time = 281.859886 + 0: The maximum resident set size (KB) = 964200 -Test 091 rap_progcld_thompson_debug PASS +Test 094 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_noah_debug -Checking test 092 rap_noah_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_noah_debug +Checking test 095 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 = 275.500189 - 0: The maximum resident set size (KB) = 963292 + 0: The total amount of wall time = 302.801285 + 0: The maximum resident set size (KB) = 963500 -Test 092 rap_noah_debug PASS +Test 095 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_rrtmgp_debug -Checking test 093 rap_rrtmgp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_rrtmgp_debug +Checking test 096 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 475.922825 - 0: The maximum resident set size (KB) = 1069992 + 0: The total amount of wall time = 501.480504 + 0: The maximum resident set size (KB) = 1085656 -Test 093 rap_rrtmgp_debug PASS +Test 096 rap_rrtmgp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_sfcdiff_debug -Checking test 094 rap_sfcdiff_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_sfcdiff_debug +Checking test 097 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 = 280.267860 - 0: The maximum resident set size (KB) = 963848 + 0: The total amount of wall time = 280.357183 + 0: The maximum resident set size (KB) = 963900 -Test 094 rap_sfcdiff_debug PASS +Test 097 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 098 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 = 465.421887 - 0: The maximum resident set size (KB) = 965688 + 0: The total amount of wall time = 468.468806 + 0: The maximum resident set size (KB) = 965904 -Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 098 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rrfs_v1beta_debug -Checking test 096 rrfs_v1beta_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rrfs_v1beta_debug +Checking test 099 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 = 278.273796 - 0: The maximum resident set size (KB) = 964364 + 0: The total amount of wall time = 277.897388 + 0: The maximum resident set size (KB) = 964588 -Test 096 rrfs_v1beta_debug PASS +Test 099 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_wam_debug -Checking test 097 control_wam_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_wam_debug +Checking test 100 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 291.087163 - 0: The maximum resident set size (KB) = 212240 + 0: The total amount of wall time = 291.906862 + 0: The maximum resident set size (KB) = 212232 -Test 097 control_wam_debug PASS +Test 100 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_atm -Checking test 098 hafs_regional_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_atm +Checking test 101 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 360.913375 - 0: The maximum resident set size (KB) = 659772 + 0: The total amount of wall time = 296.529683 + 0: The maximum resident set size (KB) = 659644 -Test 098 hafs_regional_atm PASS +Test 101 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_atm_thompson_gfdlsf -Checking test 099 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_atm_thompson_gfdlsf +Checking test 102 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 383.677054 - 0: The maximum resident set size (KB) = 1019048 + 0: The total amount of wall time = 368.617464 + 0: The maximum resident set size (KB) = 1018688 -Test 099 hafs_regional_atm_thompson_gfdlsf PASS +Test 102 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_atm_ocn -Checking test 100 hafs_regional_atm_ocn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_atm_ocn +Checking test 103 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2881,29 +3034,29 @@ Checking test 100 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 = 433.552816 - 0: The maximum resident set size (KB) = 662420 + 0: The total amount of wall time = 398.430179 + 0: The maximum resident set size (KB) = 662280 -Test 100 hafs_regional_atm_ocn PASS +Test 103 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_atm_wav -Checking test 101 hafs_regional_atm_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_atm_wav +Checking test 104 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 901.557665 - 0: The maximum resident set size (KB) = 664444 + 0: The total amount of wall time = 899.939694 + 0: The maximum resident set size (KB) = 666176 -Test 101 hafs_regional_atm_wav PASS +Test 104 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_atm_ocn_wav -Checking test 102 hafs_regional_atm_ocn_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_atm_ocn_wav +Checking test 105 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2911,59 +3064,59 @@ Checking test 102 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 982.109506 - 0: The maximum resident set size (KB) = 666376 + 0: The total amount of wall time = 975.987494 + 0: The maximum resident set size (KB) = 666508 -Test 102 hafs_regional_atm_ocn_wav PASS +Test 105 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_1nest_atm -Checking test 103 hafs_regional_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_1nest_atm +Checking test 106 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 = 593.766662 - 0: The maximum resident set size (KB) = 260536 + 0: The total amount of wall time = 559.696084 + 0: The maximum resident set size (KB) = 261820 -Test 103 hafs_regional_1nest_atm PASS +Test 106 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_telescopic_2nests_atm -Checking test 104 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_telescopic_2nests_atm +Checking test 107 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 627.123193 - 0: The maximum resident set size (KB) = 266344 + 0: The total amount of wall time = 574.044641 + 0: The maximum resident set size (KB) = 264596 -Test 104 hafs_regional_telescopic_2nests_atm PASS +Test 107 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_global_1nest_atm -Checking test 105 hafs_global_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_global_1nest_atm +Checking test 108 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 = 312.412751 - 0: The maximum resident set size (KB) = 165412 + 0: The total amount of wall time = 263.673211 + 0: The maximum resident set size (KB) = 165372 -Test 105 hafs_global_1nest_atm PASS +Test 108 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_global_multiple_4nests_atm -Checking test 106 hafs_global_multiple_4nests_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_global_multiple_4nests_atm +Checking test 109 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2975,149 +3128,149 @@ Checking test 106 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK - 0: The total amount of wall time = 774.448719 - 0: The maximum resident set size (KB) = 234796 + 0: The total amount of wall time = 735.386499 + 0: The maximum resident set size (KB) = 231304 -Test 106 hafs_global_multiple_4nests_atm PASS +Test 109 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_docn -Checking test 107 hafs_regional_docn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_docn +Checking test 110 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 409.809641 - 0: The maximum resident set size (KB) = 665552 + 0: The total amount of wall time = 393.885463 + 0: The maximum resident set size (KB) = 665452 -Test 107 hafs_regional_docn PASS +Test 110 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_docn_oisst -Checking test 108 hafs_regional_docn_oisst results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_docn_oisst +Checking test 111 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 401.117331 - 0: The maximum resident set size (KB) = 665372 + 0: The total amount of wall time = 391.417399 + 0: The maximum resident set size (KB) = 665652 -Test 108 hafs_regional_docn_oisst PASS +Test 111 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_datm_cdeps -Checking test 109 hafs_regional_datm_cdeps results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_datm_cdeps +Checking test 112 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 = 1040.697554 - 0: The maximum resident set size (KB) = 807192 + 0: The total amount of wall time = 1057.066231 + 0: The maximum resident set size (KB) = 807128 -Test 109 hafs_regional_datm_cdeps PASS +Test 112 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_control_cfsr -Checking test 110 datm_cdeps_control_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_control_cfsr +Checking test 113 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.551203 - 0: The maximum resident set size (KB) = 683280 + 0: The total amount of wall time = 151.598126 + 0: The maximum resident set size (KB) = 683508 -Test 110 datm_cdeps_control_cfsr PASS +Test 113 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_restart_cfsr -Checking test 111 datm_cdeps_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_restart_cfsr +Checking test 114 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 86.982714 - 0: The maximum resident set size (KB) = 664024 + 0: The total amount of wall time = 87.190198 + 0: The maximum resident set size (KB) = 664208 -Test 111 datm_cdeps_restart_cfsr PASS +Test 114 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_control_gefs -Checking test 112 datm_cdeps_control_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_control_gefs +Checking test 115 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.905423 - 0: The maximum resident set size (KB) = 565568 + 0: The total amount of wall time = 150.637565 + 0: The maximum resident set size (KB) = 563580 -Test 112 datm_cdeps_control_gefs PASS +Test 115 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_iau_gefs -Checking test 113 datm_cdeps_iau_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_iau_gefs +Checking test 116 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.512336 - 0: The maximum resident set size (KB) = 565768 + 0: The total amount of wall time = 150.465486 + 0: The maximum resident set size (KB) = 565784 -Test 113 datm_cdeps_iau_gefs PASS +Test 116 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_stochy_gefs -Checking test 114 datm_cdeps_stochy_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_stochy_gefs +Checking test 117 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.933544 - 0: The maximum resident set size (KB) = 567592 + 0: The total amount of wall time = 148.432176 + 0: The maximum resident set size (KB) = 563816 -Test 114 datm_cdeps_stochy_gefs PASS +Test 117 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_bulk_cfsr -Checking test 115 datm_cdeps_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_bulk_cfsr +Checking test 118 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.576403 - 0: The maximum resident set size (KB) = 683428 + 0: The total amount of wall time = 150.506862 + 0: The maximum resident set size (KB) = 683432 -Test 115 datm_cdeps_bulk_cfsr PASS +Test 118 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_bulk_gefs -Checking test 116 datm_cdeps_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_bulk_gefs +Checking test 119 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.526358 - 0: The maximum resident set size (KB) = 565584 + 0: The total amount of wall time = 148.439416 + 0: The maximum resident set size (KB) = 565468 -Test 116 datm_cdeps_bulk_gefs PASS +Test 119 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_mx025_cfsr -Checking test 117 datm_cdeps_mx025_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_mx025_cfsr +Checking test 120 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3125,15 +3278,15 @@ Checking test 117 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 = 347.613504 - 0: The maximum resident set size (KB) = 487304 + 0: The total amount of wall time = 355.410543 + 0: The maximum resident set size (KB) = 482468 -Test 117 datm_cdeps_mx025_cfsr PASS +Test 120 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_mx025_gefs -Checking test 118 datm_cdeps_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_mx025_gefs +Checking test 121 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3141,65 +3294,65 @@ Checking test 118 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 372.155640 - 0: The maximum resident set size (KB) = 449032 + 0: The total amount of wall time = 352.994332 + 0: The maximum resident set size (KB) = 450756 -Test 118 datm_cdeps_mx025_gefs PASS +Test 121 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_multiple_files_cfsr -Checking test 119 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_multiple_files_cfsr +Checking test 122 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 = 148.571311 - 0: The maximum resident set size (KB) = 683352 + 0: The total amount of wall time = 149.509861 + 0: The maximum resident set size (KB) = 689036 -Test 119 datm_cdeps_multiple_files_cfsr PASS +Test 122 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_3072x1536_cfsr -Checking test 120 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_3072x1536_cfsr +Checking test 123 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 200.089841 - 0: The maximum resident set size (KB) = 1835848 + 0: The total amount of wall time = 199.535291 + 0: The maximum resident set size (KB) = 1835828 -Test 120 datm_cdeps_3072x1536_cfsr PASS +Test 123 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_gfs -Checking test 121 datm_cdeps_gfs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_gfs +Checking test 124 datm_cdeps_gfs results .... Comparing RESTART/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 = 206.021389 - 0: The maximum resident set size (KB) = 1835784 + 0: The total amount of wall time = 205.910981 + 0: The maximum resident set size (KB) = 1835856 -Test 121 datm_cdeps_gfs PASS +Test 124 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_debug_cfsr -Checking test 122 datm_cdeps_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_debug_cfsr +Checking test 125 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 366.645640 - 0: The maximum resident set size (KB) = 680900 + 0: The total amount of wall time = 368.524143 + 0: The maximum resident set size (KB) = 680944 -Test 122 datm_cdeps_debug_cfsr PASS +Test 125 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_atmwav -Checking test 123 control_atmwav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_atmwav +Checking test 126 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3242,15 +3395,15 @@ Checking test 123 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 115.270752 - 0: The maximum resident set size (KB) = 445680 + 0: The total amount of wall time = 91.499844 + 0: The maximum resident set size (KB) = 445832 -Test 123 control_atmwav PASS +Test 126 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_c384gdas_wav -Checking test 124 control_c384gdas_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_c384gdas_wav +Checking test 127 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3295,12 +3448,12 @@ Checking test 124 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 1521.574931 - 0: The maximum resident set size (KB) = 959336 + 0: The total amount of wall time = 1478.925100 + 0: The maximum resident set size (KB) = 954888 -Test 124 control_c384gdas_wav PASS +Test 127 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 4 13:06:56 EDT 2022 -Elapsed time: 01h:30m:52s. Have a nice day! +Tue Apr 5 16:56:31 EDT 2022 +Elapsed time: 02h:18m:19s. Have a nice day! From 2ad61fe33b6fed61ec9ef3e3347b5be1b2ad15f9 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 5 Apr 2022 16:08:56 -0600 Subject: [PATCH 31/57] [AutoRT] cheyenne.gnu Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_cheyenne.gnu.log | 334 ++++++++++++------------- 1 file changed, 167 insertions(+), 167 deletions(-) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 73d0b99969..fb38272290 100755 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,16 +1,16 @@ -Mon Apr 4 09:46:41 MDT 2022 +Tue Apr 5 15:28:27 MDT 2022 Start Regression test -Compile 001 elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 392 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 790 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 190 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 500 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 271 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 288 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 393 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 814 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 192 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 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 273 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 007 elapsed time 289 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -57,14 +57,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 273.961691 -0:The maximum resident set size (KB) = 433444 +0:The total amount of wall time = 273.493829 +0:The maximum resident set size (KB) = 433468 Test 001 control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -103,14 +103,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 137.516559 -0:The maximum resident set size (KB) = 182572 +0:The total amount of wall time = 137.067893 +0:The maximum resident set size (KB) = 183116 Test 002 control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -149,14 +149,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 815.166712 -0:The maximum resident set size (KB) = 669620 +0:The total amount of wall time = 815.793603 +0:The maximum resident set size (KB) = 670124 Test 003 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -167,14 +167,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 175.303774 -0:The maximum resident set size (KB) = 427676 +0:The total amount of wall time = 169.939143 +0:The maximum resident set size (KB) = 427720 Test 004 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -185,14 +185,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 336.933250 -0:The maximum resident set size (KB) = 485640 +0:The total amount of wall time = 335.357452 +0:The maximum resident set size (KB) = 485596 Test 005 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -203,14 +203,14 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 339.930557 -0:The maximum resident set size (KB) = 529736 +0:The total amount of wall time = 339.125270 +0:The maximum resident set size (KB) = 545648 Test 006 control_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -221,14 +221,14 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 356.031261 -0:The maximum resident set size (KB) = 795136 +0:The total amount of wall time = 363.998490 +0:The maximum resident set size (KB) = 795208 Test 007 control_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_no_aero -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_thompson_no_aero +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_no_aero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -239,14 +239,14 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 347.859419 -0:The maximum resident set size (KB) = 789000 +0:The total amount of wall time = 345.390987 +0:The maximum resident set size (KB) = 789064 Test 008 control_thompson_no_aero PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -257,14 +257,14 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 290.427190 -0:The maximum resident set size (KB) = 446184 +0:The total amount of wall time = 289.101952 +0:The maximum resident set size (KB) = 446208 Test 009 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_p8 Checking test 010 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -311,14 +311,14 @@ Checking test 010 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 300.079615 -0:The maximum resident set size (KB) = 817964 +0:The total amount of wall time = 305.643066 +0:The maximum resident set size (KB) = 817956 Test 010 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_control Checking test 011 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -365,14 +365,14 @@ Checking test 011 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 691.152675 -0:The maximum resident set size (KB) = 773456 +0:The total amount of wall time = 684.140698 +0:The maximum resident set size (KB) = 773532 Test 011 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_2threads Checking test 012 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -419,14 +419,14 @@ Checking test 012 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1212.205326 -0:The maximum resident set size (KB) = 840556 +0:The total amount of wall time = 1206.230683 +0:The maximum resident set size (KB) = 840828 Test 012 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_restart Checking test 013 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -465,14 +465,14 @@ Checking test 013 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 341.276493 -0:The maximum resident set size (KB) = 521056 +0:The total amount of wall time = 344.188872 +0:The maximum resident set size (KB) = 521592 Test 013 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_sfcdiff Checking test 014 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -519,14 +519,14 @@ Checking test 014 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 689.085890 -0:The maximum resident set size (KB) = 773368 +0:The total amount of wall time = 690.650666 +0:The maximum resident set size (KB) = 773732 Test 014 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_sfcdiff_restart Checking test 015 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -565,14 +565,14 @@ Checking test 015 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 344.395763 -0:The maximum resident set size (KB) = 520924 +0:The total amount of wall time = 343.068475 +0:The maximum resident set size (KB) = 520956 Test 015 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/hrrr_control Checking test 016 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -619,14 +619,14 @@ Checking test 016 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 671.368274 -0:The maximum resident set size (KB) = 771320 +0:The total amount of wall time = 668.295798 +0:The maximum resident set size (KB) = 771424 Test 016 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -673,14 +673,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 678.010618 -0:The maximum resident set size (KB) = 770928 +0:The total amount of wall time = 681.664979 +0:The maximum resident set size (KB) = 771020 Test 017 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rrfs_conus13km_hrrr_warm Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -689,14 +689,14 @@ Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 319.413917 -0:The maximum resident set size (KB) = 592068 +0:The total amount of wall time = 316.444120 +0:The maximum resident set size (KB) = 592264 Test 018 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -705,250 +705,250 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 320.969239 -0:The maximum resident set size (KB) = 594992 +0:The total amount of wall time = 321.324938 +0:The maximum resident set size (KB) = 594556 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_debug Checking test 020 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 = 79.937518 -0:The maximum resident set size (KB) = 424008 +0:The total amount of wall time = 79.571303 +0:The maximum resident set size (KB) = 424348 Test 020 control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/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 -0:The total amount of wall time = 85.823992 -0:The maximum resident set size (KB) = 481220 +0:The total amount of wall time = 86.393915 +0:The maximum resident set size (KB) = 481512 Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/fv3_regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/fv3_regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/regional_debug Checking test 022 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 = 131.028542 -0:The maximum resident set size (KB) = 535372 +0:The total amount of wall time = 130.929601 +0:The maximum resident set size (KB) = 535588 Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/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 -0:The total amount of wall time = 144.047761 -0:The maximum resident set size (KB) = 795912 +0:The total amount of wall time = 144.439886 +0:The maximum resident set size (KB) = 795872 Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_diag_debug Checking test 024 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 = 152.122098 -0:The maximum resident set size (KB) = 878372 +0:The total amount of wall time = 153.002450 +0:The maximum resident set size (KB) = 878512 Test 024 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_noah_sfcdiff_cires_ugwp_debug Checking test 025 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 = 233.178952 -0:The maximum resident set size (KB) = 794616 +0:The total amount of wall time = 233.216651 +0:The maximum resident set size (KB) = 794440 Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_progcld_thompson_debug Checking test 026 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 = 144.448192 -0:The maximum resident set size (KB) = 796012 +0:The total amount of wall time = 144.183851 +0:The maximum resident set size (KB) = 795936 Test 026 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rrfs_v1beta_debug Checking test 027 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 = 143.675632 -0:The maximum resident set size (KB) = 790808 +0:The total amount of wall time = 143.990261 +0:The maximum resident set size (KB) = 790732 Test 027 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_thompson_debug Checking test 028 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.365161 -0:The maximum resident set size (KB) = 782016 +0:The total amount of wall time = 93.902491 +0:The maximum resident set size (KB) = 781964 Test 028 control_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_thompson_no_aero_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_no_aero_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_thompson_no_aero_debug Checking test 029 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 89.822754 -0:The maximum resident set size (KB) = 777332 +0:The total amount of wall time = 90.142503 +0:The maximum resident set size (KB) = 777292 Test 029 control_thompson_no_aero_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_debug_extdiag -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_thompson_extdiag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_debug_extdiag +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_thompson_extdiag_debug Checking test 030 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 100.972197 -0:The maximum resident set size (KB) = 823628 +0:The total amount of wall time = 100.531776 +0:The maximum resident set size (KB) = 823508 Test 030 control_thompson_extdiag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_thompson_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_thompson_progcld_thompson_debug Checking test 031 control_thompson_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 = 93.647792 -0:The maximum resident set size (KB) = 782076 +0:The total amount of wall time = 93.985268 +0:The maximum resident set size (KB) = 781960 Test 031 control_thompson_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_rrtmgp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_rrtmgp_debug Checking test 032 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.691201 -0:The maximum resident set size (KB) = 519304 +0:The total amount of wall time = 86.793481 +0:The maximum resident set size (KB) = 535396 Test 032 control_rrtmgp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_ras_debug Checking test 033 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 = 83.201344 -0:The maximum resident set size (KB) = 433872 +0:The total amount of wall time = 83.092272 +0:The maximum resident set size (KB) = 434200 Test 033 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_stochy_debug Checking test 034 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 = 90.258632 -0:The maximum resident set size (KB) = 427804 +0:The total amount of wall time = 90.357087 +0:The maximum resident set size (KB) = 428112 -Test 034 control_stochy_debug PASS +Test 034 control_stochy_debug PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_debug_p8 Checking test 035 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 = 89.753914 -0:The maximum resident set size (KB) = 808420 +0:The total amount of wall time = 91.474511 +0:The maximum resident set size (KB) = 808392 Test 035 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 144.338371 -0:The maximum resident set size (KB) = 170400 +0:The total amount of wall time = 143.999159 +0:The maximum resident set size (KB) = 170704 Test 036 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/cpld_control_c96_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/cpld_control_c96_noaero_p8 Checking test 037 cpld_control_c96_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 037 cpld_control_c96_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 = 383.103508 -0:The maximum resident set size (KB) = 841412 +0:The total amount of wall time = 390.545528 +0:The maximum resident set size (KB) = 842252 Test 037 cpld_control_c96_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/cpld_debug_noaero_p8 Checking test 038 cpld_debug_noaero_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,25 +1067,25 @@ Checking test 038 cpld_debug_noaero_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 342.765289 -0:The maximum resident set size (KB) = 858584 +0:The total amount of wall time = 343.706536 +0:The maximum resident set size (KB) = 858820 Test 038 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/datm_cdeps_control_cfsr Checking test 039 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 173.440050 -0:The maximum resident set size (KB) = 647064 +0:The total amount of wall time = 172.849807 +0:The maximum resident set size (KB) = 642292 Test 039 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 4 10:16:39 MDT 2022 -Elapsed time: 00h:29m:59s. Have a nice day! +Tue Apr 5 16:08:54 MDT 2022 +Elapsed time: 00h:40m:27s. Have a nice day! From 9c15cf072ad3b3f4b75469312e7e6d21a860a9b9 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 5 Apr 2022 22:58:36 +0000 Subject: [PATCH 32/57] [AutoRT] hera.gnu Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_hera.gnu.log | 332 ++++++++++++++--------------- 1 file changed, 166 insertions(+), 166 deletions(-) diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 7057902ab1..6ac38d4b28 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,16 +1,16 @@ -Mon Apr 4 15:47:53 UTC 2022 +Tue Apr 5 22:13:20 UTC 2022 Start Regression test -Compile 001 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 294 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 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 115 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 107 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 297 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 96 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 220 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 122 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 007 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-20220401/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -57,14 +57,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 809.480382 - 0: The maximum resident set size (KB) = 481828 + 0: The total amount of wall time = 783.183466 + 0: The maximum resident set size (KB) = 477948 Test 001 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -103,14 +103,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.872815 - 0: The maximum resident set size (KB) = 178168 + 0: The total amount of wall time = 389.673802 + 0: The maximum resident set size (KB) = 180564 Test 002 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -149,14 +149,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 674.748845 -0: The maximum resident set size (KB) = 687404 +0: The total amount of wall time = 672.344002 +0: The maximum resident set size (KB) = 693344 Test 003 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -167,14 +167,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 639.703780 - 0: The maximum resident set size (KB) = 480136 + 0: The total amount of wall time = 624.974861 + 0: The maximum resident set size (KB) = 477684 Test 004 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -185,14 +185,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1369.900866 - 0: The maximum resident set size (KB) = 523176 + 0: The total amount of wall time = 1350.973649 + 0: The maximum resident set size (KB) = 527856 Test 005 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -203,14 +203,14 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 822.726857 - 0: The maximum resident set size (KB) = 578236 + 0: The total amount of wall time = 824.198868 + 0: The maximum resident set size (KB) = 590576 Test 006 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -221,14 +221,14 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 973.509567 - 0: The maximum resident set size (KB) = 843932 + 0: The total amount of wall time = 980.622264 + 0: The maximum resident set size (KB) = 839792 Test 007 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -239,14 +239,14 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 967.754557 - 0: The maximum resident set size (KB) = 839528 + 0: The total amount of wall time = 958.293834 + 0: The maximum resident set size (KB) = 835944 Test 008 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -257,14 +257,14 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 833.941719 - 0: The maximum resident set size (KB) = 491180 + 0: The total amount of wall time = 802.937754 + 0: The maximum resident set size (KB) = 488860 Test 009 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_p8 Checking test 010 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -311,14 +311,14 @@ Checking test 010 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 850.520820 - 0: The maximum resident set size (KB) = 835960 + 0: The total amount of wall time = 843.891453 + 0: The maximum resident set size (KB) = 831828 Test 010 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_control Checking test 011 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -365,14 +365,14 @@ Checking test 011 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1381.118559 - 0: The maximum resident set size (KB) = 831736 + 0: The total amount of wall time = 1378.436520 + 0: The maximum resident set size (KB) = 825396 Test 011 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_2threads Checking test 012 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -419,14 +419,14 @@ Checking test 012 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1398.390765 - 0: The maximum resident set size (KB) = 894496 + 0: The total amount of wall time = 1368.537788 + 0: The maximum resident set size (KB) = 889084 Test 012 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_restart Checking test 013 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -465,14 +465,14 @@ Checking test 013 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 672.893966 - 0: The maximum resident set size (KB) = 542536 + 0: The total amount of wall time = 666.579260 + 0: The maximum resident set size (KB) = 538100 Test 013 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_sfcdiff Checking test 014 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -519,14 +519,14 @@ Checking test 014 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1338.417918 - 0: The maximum resident set size (KB) = 825920 + 0: The total amount of wall time = 1361.168331 + 0: The maximum resident set size (KB) = 825132 Test 014 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_sfcdiff_restart Checking test 015 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -565,14 +565,14 @@ Checking test 015 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 685.869582 - 0: The maximum resident set size (KB) = 538348 + 0: The total amount of wall time = 678.452465 + 0: The maximum resident set size (KB) = 538696 Test 015 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/hrrr_control Checking test 016 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -619,14 +619,14 @@ Checking test 016 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1367.705643 - 0: The maximum resident set size (KB) = 828508 + 0: The total amount of wall time = 1364.493037 + 0: The maximum resident set size (KB) = 824448 Test 016 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -673,14 +673,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1365.794118 - 0: The maximum resident set size (KB) = 826840 + 0: The total amount of wall time = 1371.699869 + 0: The maximum resident set size (KB) = 829040 Test 017 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rrfs_conus13km_hrrr_warm Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -689,14 +689,14 @@ Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1497.934564 - 0: The maximum resident set size (KB) = 632628 + 0: The total amount of wall time = 1564.754494 + 0: The maximum resident set size (KB) = 633780 Test 018 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -705,250 +705,250 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1535.439614 - 0: The maximum resident set size (KB) = 641340 + 0: The total amount of wall time = 1529.050582 + 0: The maximum resident set size (KB) = 637252 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_debug Checking test 020 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 = 98.454724 - 0: The maximum resident set size (KB) = 481928 + 0: The total amount of wall time = 97.440532 + 0: The maximum resident set size (KB) = 471952 Test 020 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/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 - 0: The total amount of wall time = 126.930587 - 0: The maximum resident set size (KB) = 536948 + 0: The total amount of wall time = 122.430395 + 0: The maximum resident set size (KB) = 532052 Test 021 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/fv3_regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/regional_debug Checking test 022 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 = 124.549141 - 0: The maximum resident set size (KB) = 554112 + 0: The total amount of wall time = 125.013173 + 0: The maximum resident set size (KB) = 550068 Test 022 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/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 - 0: The total amount of wall time = 166.160130 - 0: The maximum resident set size (KB) = 848488 + 0: The total amount of wall time = 169.578250 + 0: The maximum resident set size (KB) = 841020 Test 023 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_diag_debug Checking test 024 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 = 208.334279 - 0: The maximum resident set size (KB) = 933704 + 0: The total amount of wall time = 201.373971 + 0: The maximum resident set size (KB) = 925904 Test 024 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_noah_sfcdiff_cires_ugwp_debug Checking test 025 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 = 259.300171 - 0: The maximum resident set size (KB) = 848200 + 0: The total amount of wall time = 260.075904 + 0: The maximum resident set size (KB) = 844944 Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_progcld_thompson_debug Checking test 026 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 = 166.893489 - 0: The maximum resident set size (KB) = 853484 + 0: The total amount of wall time = 169.451012 + 0: The maximum resident set size (KB) = 841564 Test 026 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rrfs_v1beta_debug Checking test 027 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 = 165.234470 - 0: The maximum resident set size (KB) = 849820 + 0: The total amount of wall time = 166.599945 + 0: The maximum resident set size (KB) = 838816 Test 027 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_thompson_debug Checking test 028 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 111.649440 - 0: The maximum resident set size (KB) = 846080 + 0: The total amount of wall time = 113.594492 + 0: The maximum resident set size (KB) = 841512 Test 028 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_thompson_no_aero_debug Checking test 029 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.212769 - 0: The maximum resident set size (KB) = 837244 + 0: The total amount of wall time = 108.435940 + 0: The maximum resident set size (KB) = 829660 Test 029 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_thompson_extdiag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_thompson_extdiag_debug Checking test 030 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 130.534098 - 0: The maximum resident set size (KB) = 872824 + 0: The total amount of wall time = 135.051439 + 0: The maximum resident set size (KB) = 864228 Test 030 control_thompson_extdiag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_thompson_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_thompson_progcld_thompson_debug Checking test 031 control_thompson_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 = 113.473672 - 0: The maximum resident set size (KB) = 845712 + 0: The total amount of wall time = 111.679007 + 0: The maximum resident set size (KB) = 835900 Test 031 control_thompson_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_rrtmgp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_rrtmgp_debug Checking test 032 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 106.166099 - 0: The maximum resident set size (KB) = 581648 + 0: The total amount of wall time = 103.886199 + 0: The maximum resident set size (KB) = 590540 Test 032 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_ras_debug Checking test 033 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 100.790348 - 0: The maximum resident set size (KB) = 492892 + 0: The total amount of wall time = 103.325095 + 0: The maximum resident set size (KB) = 484708 Test 033 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_stochy_debug Checking test 034 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 = 116.770739 - 0: The maximum resident set size (KB) = 486804 + 0: The total amount of wall time = 115.565377 + 0: The maximum resident set size (KB) = 480868 Test 034 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_debug_p8 Checking test 035 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 = 110.928520 - 0: The maximum resident set size (KB) = 839904 + 0: The total amount of wall time = 109.420283 + 0: The maximum resident set size (KB) = 832428 Test 035 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 176.678048 - 0: The maximum resident set size (KB) = 193296 + 0: The total amount of wall time = 178.750462 + 0: The maximum resident set size (KB) = 192032 Test 036 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/cpld_control_c96_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/cpld_control_c96_noaero_p8 Checking test 037 cpld_control_c96_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 037 cpld_control_c96_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 = 1140.923412 - 0: The maximum resident set size (KB) = 856236 + 0: The total amount of wall time = 1103.904609 + 0: The maximum resident set size (KB) = 862468 Test 037 cpld_control_c96_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/cpld_debug_noaero_p8 Checking test 038 cpld_debug_noaero_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,25 +1067,25 @@ Checking test 038 cpld_debug_noaero_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 581.696178 - 0: The maximum resident set size (KB) = 866916 + 0: The total amount of wall time = 564.530928 + 0: The maximum resident set size (KB) = 868428 Test 038 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/datm_cdeps_control_cfsr Checking test 039 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.255445 - 0: The maximum resident set size (KB) = 628908 + 0: The total amount of wall time = 164.424128 + 0: The maximum resident set size (KB) = 623612 Test 039 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 4 16:38:14 UTC 2022 -Elapsed time: 00h:50m:22s. Have a nice day! +Tue Apr 5 22:58:34 UTC 2022 +Elapsed time: 00h:45m:15s. Have a nice day! From 49e67248b86055b33ca376bf151d24c5036eb634 Mon Sep 17 00:00:00 2001 From: MinsukJi-NOAA Date: Tue, 5 Apr 2022 23:08:34 +0000 Subject: [PATCH 33/57] Add wcoss dell RT log: all tests passed --- tests/RegressionTests_wcoss_dell_p3.log | 1787 +++++++++++++---------- 1 file changed, 983 insertions(+), 804 deletions(-) diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 8b3c0f7649..e6dfd18e07 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,24 +1,24 @@ -Mon Apr 4 15:28:34 UTC 2022 +Tue Apr 5 21:17:35 UTC 2022 Start Regression test -Compile 001 elapsed time 2113 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 581 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1129 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 1128 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 1238 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 802 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 466 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 352 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 366 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 287 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 1432 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 2132 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 576 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 1175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 1222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 792 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 832 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 342 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 355 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 1419 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 012 elapsed time 1425 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 866 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 340 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1363 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 851 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 312 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 1128 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_control_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 386.173839 -[0] The maximum resident set size (KB) = 1155404 +[0] The total amount of wall time = 389.858283 +[0] The maximum resident set size (KB) = 1157100 Test 001 cpld_control_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_2threads_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 421.617211 -[0] The maximum resident set size (KB) = 1567076 +[0] The total amount of wall time = 422.952073 +[0] The maximum resident set size (KB) = 1569148 Test 002 cpld_2threads_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_decomp_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 388.765338 -[0] The maximum resident set size (KB) = 1147736 +[0] The total amount of wall time = 385.724867 +[0] The maximum resident set size (KB) = 1149460 Test 003 cpld_decomp_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_mpi_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -267,27 +267,19 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 320.993729 -[0] The maximum resident set size (KB) = 1041132 +[0] The total amount of wall time = 324.893894 +[0] The maximum resident set size (KB) = 1050572 Test 004 cpld_mpi_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_p7_rrtmgp -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_control_p7_rrtmgp -Checking test 005 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_bmark_p7 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_bmark_p7 +Checking test 005 cpld_bmark_p7 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -321,21 +313,21 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/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_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 301.571985 -[0] The maximum resident set size (KB) = 645440 +[0] The total amount of wall time = 1030.880922 +[0] The maximum resident set size (KB) = 1215492 -Test 005 cpld_control_p7_rrtmgp PASS +Test 005 cpld_bmark_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_bmark_p7 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_bmark_p7 -Checking test 006 cpld_bmark_p7 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_bmark_p7_rrtmgp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_bmark_p7_rrtmgp +Checking test 006 cpld_bmark_p7_rrtmgp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -379,14 +371,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1025.597359 -[0] The maximum resident set size (KB) = 1218268 +[0] The total amount of wall time = 1124.927385 +[0] The maximum resident set size (KB) = 1345128 -Test 006 cpld_bmark_p7 PASS +Test 006 cpld_bmark_p7_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_bmark_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_bmark_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_bmark_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -432,15 +424,68 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1201.651170 -[0] The maximum resident set size (KB) = 2825008 +[0] The total amount of wall time = 1164.557080 +[0] The maximum resident set size (KB) = 2826052 Test 007 cpld_bmark_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_control_c96_p8 -Checking test 008 cpld_control_c96_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_bmark_p8_rrtmgp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_bmark_p8_rrtmgp +Checking test 008 cpld_bmark_p8_rrtmgp results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + +[0] The total amount of wall time = 1200.765196 +[0] The maximum resident set size (KB) = 3018068 + +Test 008 cpld_bmark_p8_rrtmgp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_c96_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_control_c96_p8 +Checking test 009 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -502,15 +547,15 @@ Checking test 008 cpld_control_c96_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 = 383.405551 -[0] The maximum resident set size (KB) = 1149680 +[0] The total amount of wall time = 377.587529 +[0] The maximum resident set size (KB) = 1150432 -Test 008 cpld_control_c96_p8 PASS +Test 009 cpld_control_c96_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_restart_c96_p8 -Checking test 009 cpld_restart_c96_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_c96_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_restart_c96_p8 +Checking test 010 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -560,15 +605,15 @@ Checking test 009 cpld_restart_c96_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 = 210.010122 -[0] The maximum resident set size (KB) = 1112452 +[0] The total amount of wall time = 209.657159 +[0] The maximum resident set size (KB) = 1116336 -Test 009 cpld_restart_c96_p8 PASS +Test 010 cpld_restart_c96_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_control_c192_p8 -Checking test 010 cpld_control_c192_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_control_c192_p8 +Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -618,15 +663,15 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 1705.927095 -[0] The maximum resident set size (KB) = 1566456 +[0] The total amount of wall time = 1698.531186 +[0] The maximum resident set size (KB) = 1564520 -Test 010 cpld_control_c192_p8 PASS +Test 011 cpld_control_c192_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_restart_c192_p8 -Checking test 011 cpld_restart_c192_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_restart_c192_p8 +Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -676,15 +721,15 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 1117.746168 -[0] The maximum resident set size (KB) = 1787592 +[0] The total amount of wall time = 1119.353260 +[0] The maximum resident set size (KB) = 1791472 -Test 011 cpld_restart_c192_p8 PASS +Test 012 cpld_restart_c192_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_control_c384_p8 -Checking test 012 cpld_control_c384_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_control_c384_p8 +Checking test 013 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -727,15 +772,15 @@ Checking test 012 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 1286.880564 -[0] The maximum resident set size (KB) = 2808480 +[0] The total amount of wall time = 1282.172582 +[0] The maximum resident set size (KB) = 2817672 -Test 012 cpld_control_c384_p8 PASS +Test 013 cpld_control_c384_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_restart_c384_p8 -Checking test 013 cpld_restart_c384_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_restart_c384_p8 +Checking test 014 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -778,15 +823,15 @@ Checking test 013 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 709.174279 -[0] The maximum resident set size (KB) = 2783708 +[0] The total amount of wall time = 707.614520 +[0] The maximum resident set size (KB) = 2782248 -Test 013 cpld_restart_c384_p8 PASS +Test 014 cpld_restart_c384_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_debug_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_debug_p8 -Checking test 014 cpld_debug_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_debug_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -836,15 +881,15 @@ Checking test 014 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 1159.607151 -[0] The maximum resident set size (KB) = 1246948 +[0] The total amount of wall time = 1157.561970 +[0] The maximum resident set size (KB) = 1248128 -Test 014 cpld_debug_p8 PASS +Test 015 cpld_debug_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control -Checking test 015 control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control +Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -890,15 +935,15 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 147.022258 -[0] The maximum resident set size (KB) = 466060 +[0] The total amount of wall time = 147.118747 +[0] The maximum resident set size (KB) = 465668 -Test 015 control PASS +Test 016 control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_decomp -Checking test 016 control_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_decomp +Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -940,29 +985,29 @@ Checking test 016 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 153.259084 -[0] The maximum resident set size (KB) = 463580 +[0] The total amount of wall time = 154.455080 +[0] The maximum resident set size (KB) = 459476 -Test 016 control_decomp PASS +Test 017 control_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_2dwrtdecomp -Checking test 017 control_2dwrtdecomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_2dwrtdecomp +Checking test 018 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 144.040811 -[0] The maximum resident set size (KB) = 463516 +[0] The total amount of wall time = 141.285701 +[0] The maximum resident set size (KB) = 466232 -Test 017 control_2dwrtdecomp PASS +Test 018 control_2dwrtdecomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_2threads -Checking test 018 control_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_2threads +Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1004,15 +1049,15 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 135.760913 -[0] The maximum resident set size (KB) = 518044 +[0] The total amount of wall time = 135.030153 +[0] The maximum resident set size (KB) = 514948 -Test 018 control_2threads PASS +Test 019 control_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_restart -Checking test 019 control_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_restart +Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1050,15 +1095,15 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 75.862592 -[0] The maximum resident set size (KB) = 205988 +[0] The total amount of wall time = 77.721480 +[0] The maximum resident set size (KB) = 207124 -Test 019 control_restart PASS +Test 020 control_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_fhzero -Checking test 020 control_fhzero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_fhzero +Checking test 021 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1100,15 +1145,15 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 143.657561 -[0] The maximum resident set size (KB) = 461524 +[0] The total amount of wall time = 138.686818 +[0] The maximum resident set size (KB) = 463980 -Test 020 control_fhzero PASS +Test 021 control_fhzero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_CubedSphereGrid +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1134,15 +1179,15 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -[0] The total amount of wall time = 141.561517 -[0] The maximum resident set size (KB) = 466504 +[0] The total amount of wall time = 142.972680 +[0] The maximum resident set size (KB) = 466780 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_latlon -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_latlon -Checking test 022 control_latlon results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_latlon +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_latlon +Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1152,33 +1197,33 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 148.125380 -[0] The maximum resident set size (KB) = 462244 +[0] The total amount of wall time = 143.633223 +[0] The maximum resident set size (KB) = 460164 -Test 022 control_latlon PASS +Test 023 control_latlon PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 147.294436 -[0] The maximum resident set size (KB) = 467924 +[0] The total amount of wall time = 153.245176 +[0] The maximum resident set size (KB) = 462628 -Test 023 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c48 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_c48 -Checking test 024 control_c48 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_c48 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_c48 +Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1216,15 +1261,15 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 455.970704 -[0] The maximum resident set size (KB) = 655516 +[0] The total amount of wall time = 455.811266 +[0] The maximum resident set size (KB) = 656088 -Test 024 control_c48 PASS +Test 025 control_c48 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c192 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_c192 -Checking test 025 control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_c192 +Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1234,15 +1279,15 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 580.873243 -[0] The maximum resident set size (KB) = 561964 +[0] The total amount of wall time = 569.654294 +[0] The maximum resident set size (KB) = 556324 -Test 025 control_c192 PASS +Test 026 control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c384 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_c384 -Checking test 026 control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_c384 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_c384 +Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1252,15 +1297,15 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 1072.868970 -[0] The maximum resident set size (KB) = 817272 +[0] The total amount of wall time = 1074.506839 +[0] The maximum resident set size (KB) = 818684 -Test 026 control_c384 PASS +Test 027 control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c384gdas -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_c384gdas -Checking test 027 control_c384gdas results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_c384gdas +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_c384gdas +Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1302,15 +1347,15 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 946.016248 -[0] The maximum resident set size (KB) = 963992 +[0] The total amount of wall time = 944.096282 +[0] The maximum resident set size (KB) = 965372 -Test 027 control_c384gdas PASS +Test 028 control_c384gdas PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_stochy -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_stochy -Checking test 028 control_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_stochy +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_stochy +Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1320,29 +1365,29 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 99.153530 -[0] The maximum resident set size (KB) = 467804 +[0] The total amount of wall time = 95.070301 +[0] The maximum resident set size (KB) = 467216 -Test 028 control_stochy PASS +Test 029 control_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_stochy -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_stochy_restart -Checking test 029 control_stochy_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_stochy +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_stochy_restart +Checking test 030 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 = 53.173223 -[0] The maximum resident set size (KB) = 265748 +[0] The total amount of wall time = 52.880920 +[0] The maximum resident set size (KB) = 262236 -Test 029 control_stochy_restart PASS +Test 030 control_stochy_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_lndp -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_lndp -Checking test 030 control_lndp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_lndp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_lndp +Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1352,15 +1397,15 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 86.721803 -[0] The maximum resident set size (KB) = 468060 +[0] The total amount of wall time = 87.413286 +[0] The maximum resident set size (KB) = 465504 -Test 030 control_lndp PASS +Test 031 control_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_iovr4 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_iovr4 -Checking test 031 control_iovr4 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_iovr4 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_iovr4 +Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1374,15 +1419,15 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 147.823072 -[0] The maximum resident set size (KB) = 462648 +[0] The total amount of wall time = 151.123705 +[0] The maximum resident set size (KB) = 467208 -Test 031 control_iovr4 PASS +Test 032 control_iovr4 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_iovr5 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_iovr5 -Checking test 032 control_iovr5 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_iovr5 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_iovr5 +Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1396,15 +1441,15 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 151.051685 -[0] The maximum resident set size (KB) = 463496 +[0] The total amount of wall time = 145.773121 +[0] The maximum resident set size (KB) = 466024 -Test 032 control_iovr5 PASS +Test 033 control_iovr5 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_p8 -Checking test 033 control_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_p8 +Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1450,15 +1495,15 @@ Checking test 033 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 172.677512 -[0] The maximum resident set size (KB) = 847136 +[0] The total amount of wall time = 175.733139 +[0] The maximum resident set size (KB) = 845440 -Test 033 control_p8 PASS +Test 034 control_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_restart_p8 -Checking test 034 control_restart_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_restart_p8 +Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1496,15 +1541,15 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 92.005996 -[0] The maximum resident set size (KB) = 594008 +[0] The total amount of wall time = 93.337253 +[0] The maximum resident set size (KB) = 594724 -Test 034 control_restart_p8 PASS +Test 035 control_restart_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_decomp_p8 -Checking test 035 control_decomp_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_decomp_p8 +Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1546,15 +1591,15 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 177.592974 -[0] The maximum resident set size (KB) = 839568 +[0] The total amount of wall time = 181.387103 +[0] The maximum resident set size (KB) = 841700 -Test 035 control_decomp_p8 PASS +Test 036 control_decomp_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_2threads_p8 -Checking test 036 control_2threads_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_2threads_p8 +Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1596,15 +1641,15 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 164.791707 -[0] The maximum resident set size (KB) = 919728 +[0] The total amount of wall time = 163.734978 +[0] The maximum resident set size (KB) = 919908 -Test 036 control_2threads_p8 PASS +Test 037 control_2threads_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p7_rrtmgp -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_p7_rrtmgp -Checking test 037 control_p7_rrtmgp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p7_rrtmgp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_p7_rrtmgp +Checking test 038 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1650,15 +1695,69 @@ Checking test 037 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 221.323258 -[0] The maximum resident set size (KB) = 586560 +[0] The total amount of wall time = 227.183196 +[0] The maximum resident set size (KB) = 604648 -Test 037 control_p7_rrtmgp PASS +Test 038 control_p7_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_control -Checking test 038 regional_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8_rrtmgp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_p8_rrtmgp +Checking test 039 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 232.548367 +[0] The maximum resident set size (KB) = 962152 + +Test 039 control_p8_rrtmgp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_control +Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1668,58 +1767,58 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 367.246667 -[0] The maximum resident set size (KB) = 578524 +[0] The total amount of wall time = 363.405772 +[0] The maximum resident set size (KB) = 579612 -Test 038 regional_control PASS +Test 040 regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_restart -Checking test 039 regional_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_restart +Checking test 041 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 200.821365 -[0] The maximum resident set size (KB) = 583620 +[0] The total amount of wall time = 199.609112 +[0] The maximum resident set size (KB) = 581800 -Test 039 regional_restart PASS +Test 041 regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_control_2dwrtdecomp -Checking test 040 regional_control_2dwrtdecomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_control_2dwrtdecomp +Checking test 042 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 364.773587 -[0] The maximum resident set size (KB) = 575292 +[0] The total amount of wall time = 359.689884 +[0] The maximum resident set size (KB) = 581200 -Test 040 regional_control_2dwrtdecomp PASS +Test 042 regional_control_2dwrtdecomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_noquilt -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_noquilt -Checking test 041 regional_noquilt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_noquilt +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_noquilt +Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 393.666336 -[0] The maximum resident set size (KB) = 609124 +[0] The total amount of wall time = 390.026416 +[0] The maximum resident set size (KB) = 606856 -Test 041 regional_noquilt PASS +Test 043 regional_noquilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_2threads -Checking test 042 regional_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_2threads +Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1729,15 +1828,15 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 215.473448 -[0] The maximum resident set size (KB) = 580456 +[0] The total amount of wall time = 216.533380 +[0] The maximum resident set size (KB) = 578708 -Test 042 regional_2threads PASS +Test 044 regional_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_hafs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_hafs -Checking test 043 regional_hafs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_hafs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_hafs +Checking test 045 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1745,29 +1844,29 @@ Checking test 043 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 365.105468 -[0] The maximum resident set size (KB) = 576616 +[0] The total amount of wall time = 361.799392 +[0] The maximum resident set size (KB) = 580728 -Test 043 regional_hafs PASS +Test 045 regional_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_netcdf_parallel -Checking test 044 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_netcdf_parallel +Checking test 046 regional_netcdf_parallel results .... + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 366.129634 -[0] The maximum resident set size (KB) = 574956 +[0] The total amount of wall time = 363.272738 +[0] The maximum resident set size (KB) = 577556 -Test 044 regional_netcdf_parallel PASS +Test 046 regional_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_RRTMGP -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_RRTMGP -Checking test 045 regional_RRTMGP results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_RRTMGP +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_RRTMGP +Checking test 047 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1777,15 +1876,15 @@ Checking test 045 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 502.316838 -[0] The maximum resident set size (KB) = 702140 +[0] The total amount of wall time = 519.920834 +[0] The maximum resident set size (KB) = 695432 -Test 045 regional_RRTMGP PASS +Test 047 regional_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_3km -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_3km -Checking test 046 regional_3km results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_3km +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_3km +Checking test 048 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1795,15 +1894,15 @@ Checking test 046 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -[0] The total amount of wall time = 296.652793 -[0] The maximum resident set size (KB) = 611136 +[0] The total amount of wall time = 298.785449 +[0] The maximum resident set size (KB) = 608072 -Test 046 regional_3km PASS +Test 048 regional_3km PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_control -Checking test 047 rap_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_control +Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1849,15 +1948,69 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 412.826248 -[0] The maximum resident set size (KB) = 832516 +[0] The total amount of wall time = 409.498744 +[0] The maximum resident set size (KB) = 839440 + +Test 049 rap_control PASS -Test 047 rap_control PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_rrtmgp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_rrtmgp +Checking test 050 rap_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/regional_spp_sppt_shum_skeb -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... +[0] The total amount of wall time = 469.991804 +[0] The maximum resident set size (KB) = 950704 + +Test 050 rap_rrtmgp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/regional_spp_sppt_shum_skeb +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_spp_sppt_shum_skeb +Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1867,15 +2020,15 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -[0] The total amount of wall time = 255.312618 -[0] The maximum resident set size (KB) = 930464 +[0] The total amount of wall time = 251.874468 +[0] The maximum resident set size (KB) = 926776 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_2threads -Checking test 049 rap_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_2threads +Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1921,15 +2074,15 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 389.394809 -[0] The maximum resident set size (KB) = 900684 +[0] The total amount of wall time = 388.579902 +[0] The maximum resident set size (KB) = 901372 -Test 049 rap_2threads PASS +Test 052 rap_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_restart -Checking test 050 rap_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_restart +Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1967,15 +2120,15 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 215.192619 -[0] The maximum resident set size (KB) = 590232 +[0] The total amount of wall time = 209.742503 +[0] The maximum resident set size (KB) = 586008 -Test 050 rap_restart PASS +Test 053 rap_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_sfcdiff -Checking test 051 rap_sfcdiff results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_sfcdiff +Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2021,15 +2174,15 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 414.640701 -[0] The maximum resident set size (KB) = 833600 +[0] The total amount of wall time = 418.773233 +[0] The maximum resident set size (KB) = 835528 -Test 051 rap_sfcdiff PASS +Test 054 rap_sfcdiff PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_sfcdiff_restart +Checking test 055 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2067,15 +2220,15 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 215.969082 -[0] The maximum resident set size (KB) = 587164 +[0] The total amount of wall time = 213.678819 +[0] The maximum resident set size (KB) = 585152 -Test 052 rap_sfcdiff_restart PASS +Test 055 rap_sfcdiff_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hrrr_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hrrr_control -Checking test 053 hrrr_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hrrr_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hrrr_control +Checking test 056 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2121,15 +2274,15 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 397.437709 -[0] The maximum resident set size (KB) = 829212 +[0] The total amount of wall time = 405.577252 +[0] The maximum resident set size (KB) = 837712 -Test 053 hrrr_control PASS +Test 056 hrrr_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rrfs_v1beta -Checking test 054 rrfs_v1beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rrfs_v1beta +Checking test 057 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2175,15 +2328,15 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 411.199522 -[0] The maximum resident set size (KB) = 830536 +[0] The total amount of wall time = 406.709517 +[0] The maximum resident set size (KB) = 835752 -Test 054 rrfs_v1beta PASS +Test 057 rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1nssl -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rrfs_v1nssl -Checking test 055 rrfs_v1nssl results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_v1nssl +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rrfs_v1nssl +Checking test 058 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2197,15 +2350,15 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 513.067800 -[0] The maximum resident set size (KB) = 526736 +[0] The total amount of wall time = 505.866035 +[0] The maximum resident set size (KB) = 522760 -Test 055 rrfs_v1nssl PASS +Test 058 rrfs_v1nssl PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1nssl_nohailnoccn -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rrfs_v1nssl_nohailnoccn -Checking test 056 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_v1nssl_nohailnoccn +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rrfs_v1nssl_nohailnoccn +Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2219,15 +2372,15 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 498.670849 -[0] The maximum resident set size (KB) = 516076 +[0] The total amount of wall time = 503.727091 +[0] The maximum resident set size (KB) = 511888 -Test 056 rrfs_v1nssl_nohailnoccn PASS +Test 059 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_conus13km_hrrr_warm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rrfs_conus13km_hrrr_warm -Checking test 057 rrfs_conus13km_hrrr_warm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_conus13km_hrrr_warm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rrfs_conus13km_hrrr_warm +Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2235,15 +2388,15 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 188.578773 -[0] The maximum resident set size (KB) = 664284 +[0] The total amount of wall time = 188.911996 +[0] The maximum resident set size (KB) = 662360 -Test 057 rrfs_conus13km_hrrr_warm PASS +Test 060 rrfs_conus13km_hrrr_warm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rrfs_conus13km_radar_tten_warm -Checking test 058 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rrfs_conus13km_radar_tten_warm +Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2251,15 +2404,15 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 187.410274 -[0] The maximum resident set size (KB) = 662796 +[0] The total amount of wall time = 187.201688 +[0] The maximum resident set size (KB) = 668412 -Test 058 rrfs_conus13km_radar_tten_warm PASS +Test 061 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_rrtmgp -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_rrtmgp -Checking test 059 control_rrtmgp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_rrtmgp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_rrtmgp +Checking test 062 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2269,15 +2422,15 @@ Checking test 059 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 239.154664 -[0] The maximum resident set size (KB) = 588476 +[0] The total amount of wall time = 235.633889 +[0] The maximum resident set size (KB) = 598236 -Test 059 control_rrtmgp PASS +Test 062 control_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_rrtmgp_c192 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_rrtmgp_c192 -Checking test 060 control_rrtmgp_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_rrtmgp_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_rrtmgp_c192 +Checking test 063 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2287,15 +2440,15 @@ Checking test 060 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 641.445486 -[0] The maximum resident set size (KB) = 786384 +[0] The total amount of wall time = 637.561388 +[0] The maximum resident set size (KB) = 802772 -Test 060 control_rrtmgp_c192 PASS +Test 063 control_rrtmgp_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmg -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_csawmg -Checking test 061 control_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_csawmg +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_csawmg +Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2305,15 +2458,15 @@ Checking test 061 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 380.097388 -[0] The maximum resident set size (KB) = 528852 +[0] The total amount of wall time = 373.687820 +[0] The maximum resident set size (KB) = 526044 -Test 061 control_csawmg PASS +Test 064 control_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmgt -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_csawmgt -Checking test 062 control_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_csawmgt +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_csawmgt +Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2323,15 +2476,15 @@ Checking test 062 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 374.857629 -[0] The maximum resident set size (KB) = 529504 +[0] The total amount of wall time = 372.226161 +[0] The maximum resident set size (KB) = 523360 -Test 062 control_csawmgt PASS +Test 065 control_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_flake -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_flake -Checking test 063 control_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_flake +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_flake +Checking test 066 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2341,15 +2494,15 @@ Checking test 063 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 262.671563 -[0] The maximum resident set size (KB) = 536400 +[0] The total amount of wall time = 252.625159 +[0] The maximum resident set size (KB) = 535024 -Test 063 control_flake PASS +Test 066 control_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_ras -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_ras -Checking test 064 control_ras results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_ras +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_ras +Checking test 067 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2359,15 +2512,15 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 198.029493 -[0] The maximum resident set size (KB) = 499372 +[0] The total amount of wall time = 197.596733 +[0] The maximum resident set size (KB) = 498756 -Test 064 control_ras PASS +Test 067 control_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_thompson -Checking test 065 control_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_thompson +Checking test 068 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2377,15 +2530,15 @@ Checking test 065 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 247.893885 -[0] The maximum resident set size (KB) = 852632 +[0] The total amount of wall time = 255.339897 +[0] The maximum resident set size (KB) = 850104 -Test 065 control_thompson PASS +Test 068 control_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_thompson_no_aero -Checking test 066 control_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_thompson_no_aero +Checking test 069 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2395,55 +2548,55 @@ Checking test 066 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 236.109562 -[0] The maximum resident set size (KB) = 844104 +[0] The total amount of wall time = 247.898791 +[0] The maximum resident set size (KB) = 840500 -Test 066 control_thompson_no_aero PASS +Test 069 control_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wam_repro -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_wam_repro -Checking test 067 control_wam results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_wam_repro +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_wam_repro +Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 132.176415 -[0] The maximum resident set size (KB) = 230352 +[0] The total amount of wall time = 132.629879 +[0] The maximum resident set size (KB) = 227408 -Test 067 control_wam PASS +Test 070 control_wam PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_debug -Checking test 068 control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_debug +Checking test 071 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 166.578760 -[0] The maximum resident set size (KB) = 631068 +[0] The total amount of wall time = 165.824220 +[0] The maximum resident set size (KB) = 625400 -Test 068 control_debug PASS +Test 071 control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_2threads_debug -Checking test 069 control_2threads_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_2threads_debug +Checking test 072 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 156.164248 -[0] The maximum resident set size (KB) = 677656 +[0] The total amount of wall time = 156.008787 +[0] The maximum resident set size (KB) = 678772 -Test 069 control_2threads_debug PASS +Test 072 control_2threads_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_CubedSphereGrid_debug -Checking test 070 control_CubedSphereGrid_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_CubedSphereGrid_debug +Checking test 073 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2469,459 +2622,442 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 180.859214 -[0] The maximum resident set size (KB) = 626708 +[0] The total amount of wall time = 180.580905 +[0] The maximum resident set size (KB) = 626824 -Test 070 control_CubedSphereGrid_debug PASS +Test 073 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_wrtGauss_netcdf_parallel_debug -Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_wrtGauss_netcdf_parallel_debug +Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 170.581584 -[0] The maximum resident set size (KB) = 626092 +[0] The total amount of wall time = 168.700213 +[0] The maximum resident set size (KB) = 628316 -Test 071 control_wrtGauss_netcdf_parallel_debug PASS +Test 074 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_stochy_debug -Checking test 072 control_stochy_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_stochy_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_stochy_debug +Checking test 075 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 191.775819 -[0] The maximum resident set size (KB) = 635184 +[0] The total amount of wall time = 189.758943 +[0] The maximum resident set size (KB) = 629492 -Test 072 control_stochy_debug PASS +Test 075 control_stochy_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_lndp_debug -Checking test 073 control_lndp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_lndp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_lndp_debug +Checking test 076 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 171.339950 -[0] The maximum resident set size (KB) = 636616 +[0] The total amount of wall time = 170.596376 +[0] The maximum resident set size (KB) = 636576 -Test 073 control_lndp_debug PASS +Test 076 control_lndp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_rrtmgp_debug -Checking test 074 control_rrtmgp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_rrtmgp_debug +Checking test 077 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 185.845122 -[0] The maximum resident set size (KB) = 722624 +[0] The total amount of wall time = 183.853467 +[0] The maximum resident set size (KB) = 735720 -Test 074 control_rrtmgp_debug PASS +Test 077 control_rrtmgp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_csawmg_debug -Checking test 075 control_csawmg_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_csawmg_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_csawmg_debug +Checking test 078 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 268.288208 -[0] The maximum resident set size (KB) = 665516 +[0] The total amount of wall time = 267.289633 +[0] The maximum resident set size (KB) = 669452 -Test 075 control_csawmg_debug PASS +Test 078 control_csawmg_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_csawmgt_debug -Checking test 076 control_csawmgt_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_csawmgt_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_csawmgt_debug +Checking test 079 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 = 264.495463 -[0] The maximum resident set size (KB) = 662548 +[0] The total amount of wall time = 262.442867 +[0] The maximum resident set size (KB) = 666040 -Test 076 control_csawmgt_debug PASS +Test 079 control_csawmgt_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_ras_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_ras_debug -Checking test 077 control_ras_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_ras_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_ras_debug +Checking test 080 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 = 173.364417 -[0] The maximum resident set size (KB) = 637580 +[0] The total amount of wall time = 172.536625 +[0] The maximum resident set size (KB) = 641940 -Test 077 control_ras_debug PASS +Test 080 control_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_diag_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_diag_debug -Checking test 078 control_diag_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_diag_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_diag_debug +Checking test 081 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 = 176.114471 -[0] The maximum resident set size (KB) = 686380 +[0] The total amount of wall time = 175.392418 +[0] The maximum resident set size (KB) = 685728 -Test 078 control_diag_debug PASS +Test 081 control_diag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_debug_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_debug_p8 -Checking test 079 control_debug_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_debug_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_debug_p8 +Checking test 082 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 = 185.652519 -[0] The maximum resident set size (KB) = 1008996 +[0] The total amount of wall time = 184.361109 +[0] The maximum resident set size (KB) = 1007296 -Test 079 control_debug_p8 PASS +Test 082 control_debug_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_thompson_debug -Checking test 080 control_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_thompson_debug +Checking test 083 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 196.666236 -[0] The maximum resident set size (KB) = 991244 +[0] The total amount of wall time = 194.988613 +[0] The maximum resident set size (KB) = 988228 -Test 080 control_thompson_debug PASS +Test 083 control_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_thompson_no_aero_debug -Checking test 081 control_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_thompson_no_aero_debug +Checking test 084 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 188.523374 -[0] The maximum resident set size (KB) = 985072 +[0] The total amount of wall time = 189.250631 +[0] The maximum resident set size (KB) = 980772 -Test 081 control_thompson_no_aero_debug PASS +Test 084 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_debug_extdiag -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_thompson_extdiag_debug -Checking test 082 control_thompson_extdiag_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_debug_extdiag +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_thompson_extdiag_debug +Checking test 085 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 206.421406 -[0] The maximum resident set size (KB) = 1022556 +[0] The total amount of wall time = 204.764821 +[0] The maximum resident set size (KB) = 1018688 -Test 082 control_thompson_extdiag_debug PASS +Test 085 control_thompson_extdiag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_thompson_progcld_thompson_debug -Checking test 083 control_thompson_progcld_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_progcld_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_thompson_progcld_thompson_debug +Checking test 086 control_thompson_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 = 196.201478 -[0] The maximum resident set size (KB) = 994468 +[0] The total amount of wall time = 195.203798 +[0] The maximum resident set size (KB) = 994020 -Test 083 control_thompson_progcld_thompson_debug PASS +Test 086 control_thompson_progcld_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_debug -Checking test 084 regional_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/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 = 282.419741 -[0] The maximum resident set size (KB) = 609376 +[0] The total amount of wall time = 281.117872 +[0] The maximum resident set size (KB) = 601600 -Test 084 regional_debug PASS +Test 087 regional_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_control_debug -Checking test 085 rap_control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/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 = 304.994782 -[0] The maximum resident set size (KB) = 997072 +[0] The total amount of wall time = 302.608421 +[0] The maximum resident set size (KB) = 996752 -Test 085 rap_control_debug PASS +Test 088 rap_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_unified_drag_suite_debug -Checking test 086 rap_unified_drag_suite_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_unified_drag_suite_debug +Checking test 089 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 = 304.574897 -[0] The maximum resident set size (KB) = 990408 +[0] The total amount of wall time = 303.453228 +[0] The maximum resident set size (KB) = 996860 -Test 086 rap_unified_drag_suite_debug PASS +Test 089 rap_unified_drag_suite_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_diag_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_diag_debug -Checking test 087 rap_diag_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_diag_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_diag_debug +Checking test 090 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 = 320.903201 -[0] The maximum resident set size (KB) = 1079048 +[0] The total amount of wall time = 318.235684 +[0] The maximum resident set size (KB) = 1084204 -Test 087 rap_diag_debug PASS +Test 090 rap_diag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_cires_ugwp_debug -Checking test 088 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 = 310.545891 -[0] The maximum resident set size (KB) = 997568 - -Test 088 rap_cires_ugwp_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_cires_ugwp_debug +Checking test 091 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc ............MISSING file + Comparing sfcf001.nc ............MISSING file + Comparing atmf000.nc ............MISSING file + Comparing atmf001.nc ............MISSING file -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_unified_ugwp_debug -Checking test 089 rap_unified_ugwp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_unified_ugwp_debug +Checking test 092 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 = 314.155447 -[0] The maximum resident set size (KB) = 992968 +[0] The total amount of wall time = 308.974374 +[0] The maximum resident set size (KB) = 1000620 -Test 089 rap_unified_ugwp_debug PASS +Test 092 rap_unified_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_lndp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_lndp_debug -Checking test 090 rap_lndp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_lndp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_lndp_debug +Checking test 093 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 = 306.758984 -[0] The maximum resident set size (KB) = 996448 +[0] The total amount of wall time = 305.187556 +[0] The maximum resident set size (KB) = 1004732 -Test 090 rap_lndp_debug PASS +Test 093 rap_lndp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_flake_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_flake_debug -Checking test 091 rap_flake_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_flake_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_flake_debug +Checking test 094 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 = 304.741256 -[0] The maximum resident set size (KB) = 992276 +[0] The total amount of wall time = 302.794755 +[0] The maximum resident set size (KB) = 996460 -Test 091 rap_flake_debug PASS +Test 094 rap_flake_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_progcld_thompson_debug -Checking test 092 rap_progcld_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_progcld_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_progcld_thompson_debug +Checking test 095 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 = 304.495489 -[0] The maximum resident set size (KB) = 995000 +[0] The total amount of wall time = 303.247964 +[0] The maximum resident set size (KB) = 999472 -Test 092 rap_progcld_thompson_debug PASS +Test 095 rap_progcld_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_noah_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_noah_debug -Checking test 093 rap_noah_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_noah_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_noah_debug +Checking test 096 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 = 300.961358 -[0] The maximum resident set size (KB) = 999216 +[0] The total amount of wall time = 299.642678 +[0] The maximum resident set size (KB) = 995808 -Test 093 rap_noah_debug PASS +Test 096 rap_noah_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_rrtmgp_debug -Checking test 094 rap_rrtmgp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_rrtmgp_debug +Checking test 097 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 517.764592 -[0] The maximum resident set size (KB) = 1100616 +[0] The total amount of wall time = 515.689285 +[0] The maximum resident set size (KB) = 1114312 -Test 094 rap_rrtmgp_debug PASS +Test 097 rap_rrtmgp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_sfcdiff_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_sfcdiff_debug -Checking test 095 rap_sfcdiff_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_sfcdiff_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/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 = 306.061700 -[0] The maximum resident set size (KB) = 997016 +[0] The total amount of wall time = 302.633225 +[0] The maximum resident set size (KB) = 997544 -Test 095 rap_sfcdiff_debug PASS +Test 098 rap_sfcdiff_debug PASS - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 096 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 = 506.690620 -[0] The maximum resident set size (KB) = 1000460 - -Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 099 rap_noah_sfcdiff_cires_ugwp_debug FAIL -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rrfs_v1beta_debug -Checking test 097 rrfs_v1beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/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 = 302.762230 -[0] The maximum resident set size (KB) = 996744 +[0] The total amount of wall time = 301.894414 +[0] The maximum resident set size (KB) = 996444 -Test 097 rrfs_v1beta_debug PASS +Test 100 rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wam_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_wam_debug -Checking test 098 control_wam_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_wam_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/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 = 321.778766 -[0] The maximum resident set size (KB) = 254528 +[0] The total amount of wall time = 320.285475 +[0] The maximum resident set size (KB) = 254224 -Test 098 control_wam_debug PASS +Test 101 control_wam_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_atm -Checking test 099 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_atm +Checking test 102 hafs_regional_atm results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 228.003572 -[0] The maximum resident set size (KB) = 709576 +[0] The total amount of wall time = 255.145240 +[0] The maximum resident set size (KB) = 707596 -Test 099 hafs_regional_atm PASS +Test 102 hafs_regional_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_atm_thompson_gfdlsf -Checking test 100 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm_thompson_gfdlsf +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_atm_thompson_gfdlsf +Checking test 103 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK -[0] The total amount of wall time = 274.651353 -[0] The maximum resident set size (KB) = 1063552 +[0] The total amount of wall time = 332.615206 +[0] The maximum resident set size (KB) = 1062516 -Test 100 hafs_regional_atm_thompson_gfdlsf PASS +Test 103 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_ocn -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_atm_ocn -Checking test 101 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm_ocn +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_atm_ocn +Checking test 104 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 375.798321 -[0] The maximum resident set size (KB) = 714852 +[0] The total amount of wall time = 371.605976 +[0] The maximum resident set size (KB) = 713192 -Test 101 hafs_regional_atm_ocn PASS +Test 104 hafs_regional_atm_ocn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_wav -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_atm_wav -Checking test 102 hafs_regional_atm_wav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm_wav +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_atm_wav +Checking test 105 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -[0] The total amount of wall time = 973.681376 -[0] The maximum resident set size (KB) = 713356 +[0] The total amount of wall time = 971.828380 +[0] The maximum resident set size (KB) = 710076 -Test 102 hafs_regional_atm_wav PASS +Test 105 hafs_regional_atm_wav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_ocn_wav -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_atm_ocn_wav -Checking test 103 hafs_regional_atm_ocn_wav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm_ocn_wav +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_atm_ocn_wav +Checking test 106 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2929,62 +3065,62 @@ Checking test 103 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -[0] The total amount of wall time = 1103.807496 -[0] The maximum resident set size (KB) = 719376 +[0] The total amount of wall time = 1102.555362 +[0] The maximum resident set size (KB) = 714628 -Test 103 hafs_regional_atm_ocn_wav PASS +Test 106 hafs_regional_atm_ocn_wav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_1nest_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_1nest_atm -Checking test 104 hafs_regional_1nest_atm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_1nest_atm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_1nest_atm +Checking test 107 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 401.687025 -[0] The maximum resident set size (KB) = 317216 +[0] The total amount of wall time = 400.249143 +[0] The maximum resident set size (KB) = 319080 -Test 104 hafs_regional_1nest_atm PASS +Test 107 hafs_regional_1nest_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_telescopic_2nests_atm -Checking test 105 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_telescopic_2nests_atm +Checking test 108 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 408.606162 -[0] The maximum resident set size (KB) = 332192 +[0] The total amount of wall time = 405.439915 +[0] The maximum resident set size (KB) = 328876 -Test 105 hafs_regional_telescopic_2nests_atm PASS +Test 108 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_global_1nest_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_global_1nest_atm -Checking test 106 hafs_global_1nest_atm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_global_1nest_atm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_global_1nest_atm +Checking test 109 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 179.314581 -[0] The maximum resident set size (KB) = 205264 +[0] The total amount of wall time = 184.174640 +[0] The maximum resident set size (KB) = 205412 -Test 106 hafs_global_1nest_atm PASS +Test 109 hafs_global_1nest_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_global_multiple_4nests_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_global_multiple_4nests_atm -Checking test 107 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_global_multiple_4nests_atm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_global_multiple_4nests_atm +Checking test 110 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK @@ -2993,149 +3129,149 @@ Checking test 107 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK -[0] The total amount of wall time = 550.246950 -[0] The maximum resident set size (KB) = 254556 +[0] The total amount of wall time = 544.545532 +[0] The maximum resident set size (KB) = 277836 -Test 107 hafs_global_multiple_4nests_atm PASS +Test 110 hafs_global_multiple_4nests_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_docn -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_docn -Checking test 108 hafs_regional_docn results .... - Comparing atmf006.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_docn +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_docn +Checking test 111 hafs_regional_docn results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 372.681319 -[0] The maximum resident set size (KB) = 715916 +[0] The total amount of wall time = 367.445650 +[0] The maximum resident set size (KB) = 717148 -Test 108 hafs_regional_docn PASS +Test 111 hafs_regional_docn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_docn_oisst -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_docn_oisst -Checking test 109 hafs_regional_docn_oisst results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_docn_oisst +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_docn_oisst +Checking test 112 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 370.613175 -[0] The maximum resident set size (KB) = 719376 +[0] The total amount of wall time = 365.016154 +[0] The maximum resident set size (KB) = 713900 -Test 109 hafs_regional_docn_oisst PASS +Test 112 hafs_regional_docn_oisst PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_datm_cdeps -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_datm_cdeps -Checking test 110 hafs_regional_datm_cdeps results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_datm_cdeps +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_datm_cdeps +Checking test 113 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 = 1089.905619 -[0] The maximum resident set size (KB) = 890408 +[0] The total amount of wall time = 1088.721952 +[0] The maximum resident set size (KB) = 889956 -Test 110 hafs_regional_datm_cdeps PASS +Test 113 hafs_regional_datm_cdeps PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_control_cfsr -Checking test 111 datm_cdeps_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_control_cfsr +Checking test 114 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 174.692297 -[0] The maximum resident set size (KB) = 724508 +[0] The total amount of wall time = 173.862180 +[0] The maximum resident set size (KB) = 724924 -Test 111 datm_cdeps_control_cfsr PASS +Test 114 datm_cdeps_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_restart_cfsr -Checking test 112 datm_cdeps_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_restart_cfsr +Checking test 115 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 119.334914 -[0] The maximum resident set size (KB) = 724276 +[0] The total amount of wall time = 118.001323 +[0] The maximum resident set size (KB) = 721488 -Test 112 datm_cdeps_restart_cfsr PASS +Test 115 datm_cdeps_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_control_gefs -Checking test 113 datm_cdeps_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_control_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_control_gefs +Checking test 116 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 169.831866 -[0] The maximum resident set size (KB) = 627924 +[0] The total amount of wall time = 169.989185 +[0] The maximum resident set size (KB) = 624936 -Test 113 datm_cdeps_control_gefs PASS +Test 116 datm_cdeps_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_iau_gefs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_iau_gefs -Checking test 114 datm_cdeps_iau_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_iau_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_iau_gefs +Checking test 117 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 170.802472 -[0] The maximum resident set size (KB) = 627072 +[0] The total amount of wall time = 168.525462 +[0] The maximum resident set size (KB) = 624812 -Test 114 datm_cdeps_iau_gefs PASS +Test 117 datm_cdeps_iau_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_stochy_gefs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_stochy_gefs -Checking test 115 datm_cdeps_stochy_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_stochy_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_stochy_gefs +Checking test 118 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 170.417478 -[0] The maximum resident set size (KB) = 627080 +[0] The total amount of wall time = 169.898051 +[0] The maximum resident set size (KB) = 625584 -Test 115 datm_cdeps_stochy_gefs PASS +Test 118 datm_cdeps_stochy_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_bulk_cfsr -Checking test 116 datm_cdeps_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_bulk_cfsr +Checking test 119 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 175.634738 -[0] The maximum resident set size (KB) = 724484 +[0] The total amount of wall time = 174.306782 +[0] The maximum resident set size (KB) = 724476 -Test 116 datm_cdeps_bulk_cfsr PASS +Test 119 datm_cdeps_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_bulk_gefs -Checking test 117 datm_cdeps_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_bulk_gefs +Checking test 120 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 169.323744 -[0] The maximum resident set size (KB) = 623948 +[0] The total amount of wall time = 168.583450 +[0] The maximum resident set size (KB) = 627808 -Test 117 datm_cdeps_bulk_gefs PASS +Test 120 datm_cdeps_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_mx025_cfsr -Checking test 118 datm_cdeps_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_mx025_cfsr +Checking test 121 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3143,15 +3279,15 @@ Checking test 118 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 = 355.368378 -[0] The maximum resident set size (KB) = 555880 +[0] The total amount of wall time = 332.582585 +[0] The maximum resident set size (KB) = 558592 -Test 118 datm_cdeps_mx025_cfsr PASS +Test 121 datm_cdeps_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_mx025_gefs -Checking test 119 datm_cdeps_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_mx025_gefs +Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3159,65 +3295,65 @@ Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 348.643969 -[0] The maximum resident set size (KB) = 522344 +[0] The total amount of wall time = 336.020775 +[0] The maximum resident set size (KB) = 521972 -Test 119 datm_cdeps_mx025_gefs PASS +Test 122 datm_cdeps_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_multiple_files_cfsr -Checking test 120 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_multiple_files_cfsr +Checking test 123 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 = 174.117756 -[0] The maximum resident set size (KB) = 719676 +[0] The total amount of wall time = 172.830817 +[0] The maximum resident set size (KB) = 751288 -Test 120 datm_cdeps_multiple_files_cfsr PASS +Test 123 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_3072x1536_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_3072x1536_cfsr -Checking test 121 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_3072x1536_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_3072x1536_cfsr +Checking test 124 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 249.909271 -[0] The maximum resident set size (KB) = 1895496 +[0] The total amount of wall time = 248.828535 +[0] The maximum resident set size (KB) = 1897256 -Test 121 datm_cdeps_3072x1536_cfsr PASS +Test 124 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_gfs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_gfs -Checking test 122 datm_cdeps_gfs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_gfs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_gfs +Checking test 125 datm_cdeps_gfs results .... Comparing RESTART/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 = 254.992054 -[0] The maximum resident set size (KB) = 1833868 +[0] The total amount of wall time = 250.450560 +[0] The maximum resident set size (KB) = 1900052 -Test 122 datm_cdeps_gfs PASS +Test 125 datm_cdeps_gfs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_debug_cfsr -Checking test 123 datm_cdeps_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_debug_cfsr +Checking test 126 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -[0] The total amount of wall time = 501.773907 -[0] The maximum resident set size (KB) = 731712 +[0] The total amount of wall time = 500.316973 +[0] The maximum resident set size (KB) = 732880 -Test 123 datm_cdeps_debug_cfsr PASS +Test 126 datm_cdeps_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_atmwav -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_atmwav -Checking test 124 control_atmwav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_atmwav +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_atmwav +Checking test 127 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3260,15 +3396,15 @@ Checking test 124 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -[0] The total amount of wall time = 93.221985 -[0] The maximum resident set size (KB) = 470824 +[0] The total amount of wall time = 93.357409 +[0] The maximum resident set size (KB) = 477800 -Test 124 control_atmwav PASS +Test 127 control_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c384gdas_wav -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_c384gdas_wav -Checking test 125 control_c384gdas_wav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_c384gdas_wav +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_c384gdas_wav +Checking test 128 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3313,12 +3449,55 @@ Checking test 125 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK -[0] The total amount of wall time = 606.289751 -[0] The maximum resident set size (KB) = 986564 +[0] The total amount of wall time = 617.126284 +[0] The maximum resident set size (KB) = 989420 + +Test 128 control_c384gdas_wav PASS + +FAILED TESTS: +Test rap_cires_ugwp_debug 091 failed in run_test failed +Test rap_noah_sfcdiff_cires_ugwp_debug 099 failed in run_test failed + +REGRESSION TEST FAILED +Tue Apr 5 22:46:09 UTC 2022 +Elapsed time: 01h:28m:36s. Have a nice day! + + + +Tue Apr 5 22:48:38 UTC 2022 +Start Regression test + +Compile 001 elapsed time 345 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 002 elapsed time 358 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_31657/rap_cires_ugwp_debug +Checking test 001 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 = 309.878117 +[0] The maximum resident set size (KB) = 999096 + +Test 001 rap_cires_ugwp_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_31657/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 002 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 = 506.065773 +[0] The maximum resident set size (KB) = 997268 -Test 125 control_c384gdas_wav PASS +Test 002 rap_noah_sfcdiff_cires_ugwp_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 4 17:05:00 UTC 2022 -Elapsed time: 01h:36m:30s. Have a nice day! +Tue Apr 5 23:05:19 UTC 2022 +Elapsed time: 00h:16m:44s. Have a nice day! From 390df2e258a865a295695743ca584ed4b42af355 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 5 Apr 2022 23:53:05 +0000 Subject: [PATCH 34/57] [AutoRT] hera.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_hera.intel.log | 1727 ++++++++++++++------------ 1 file changed, 940 insertions(+), 787 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index f17d6edb40..71ca833600 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,25 +1,25 @@ -Mon Apr 4 15:32:47 UTC 2022 +Tue Apr 5 22:54:41 UTC 2022 Start Regression test -Compile 001 elapsed time 969 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 216 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 984 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 1106 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 550 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 428 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 640 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 328 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 767 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 959 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 547 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 519 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 488 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 612 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_control_p8 +Compile 001 elapsed time 434 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 197 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 310 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 348 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 318 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 179 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 162 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 164 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 300 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 350 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 355 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 191 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 99 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 316 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 314 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -85,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 338.363826 - 0: The maximum resident set size (KB) = 1129012 + 0: The total amount of wall time = 344.279396 + 0: The maximum resident set size (KB) = 1129296 Test 001 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -146,14 +146,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 426.172775 - 0: The maximum resident set size (KB) = 1705952 + 0: The total amount of wall time = 425.441554 + 0: The maximum resident set size (KB) = 1710884 Test 002 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -207,14 +207,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 335.038507 - 0: The maximum resident set size (KB) = 1121556 + 0: The total amount of wall time = 335.219820 + 0: The maximum resident set size (KB) = 1124140 Test 003 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -268,27 +268,19 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 279.835610 - 0: The maximum resident set size (KB) = 1043768 + 0: The total amount of wall time = 285.509280 + 0: The maximum resident set size (KB) = 1050588 Test 004 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p7_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_control_p7_rrtmgp -Checking test 005 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_bmark_p7 +Checking test 005 cpld_bmark_p7 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -322,21 +314,21 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/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_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 260.296494 - 0: The maximum resident set size (KB) = 661760 + 0: The total amount of wall time = 873.019089 + 0: The maximum resident set size (KB) = 1234012 -Test 005 cpld_control_p7_rrtmgp PASS +Test 005 cpld_bmark_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_bmark_p7 -Checking test 006 cpld_bmark_p7 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_bmark_p7_rrtmgp +Checking test 006 cpld_bmark_p7_rrtmgp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -380,14 +372,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 852.063127 - 0: The maximum resident set size (KB) = 1231584 + 0: The total amount of wall time = 980.800115 + 0: The maximum resident set size (KB) = 1361184 -Test 006 cpld_bmark_p7 PASS +Test 006 cpld_bmark_p7_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -433,15 +425,68 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1034.136956 - 0: The maximum resident set size (KB) = 2831244 + 0: The total amount of wall time = 1052.539796 + 0: The maximum resident set size (KB) = 2832384 Test 007 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_control_c96_p8 -Checking test 008 cpld_control_c96_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_bmark_p8_rrtmgp +Checking test 008 cpld_bmark_p8_rrtmgp results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + + 0: The total amount of wall time = 1104.345117 + 0: The maximum resident set size (KB) = 3025928 + +Test 008 cpld_bmark_p8_rrtmgp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_control_c96_p8 +Checking test 009 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -503,15 +548,15 @@ Checking test 008 cpld_control_c96_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 = 326.700222 - 0: The maximum resident set size (KB) = 1147636 + 0: The total amount of wall time = 331.796686 + 0: The maximum resident set size (KB) = 1144260 -Test 008 cpld_control_c96_p8 PASS +Test 009 cpld_control_c96_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_restart_c96_p8 -Checking test 009 cpld_restart_c96_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_restart_c96_p8 +Checking test 010 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -561,15 +606,15 @@ Checking test 009 cpld_restart_c96_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 = 180.398525 - 0: The maximum resident set size (KB) = 1106744 + 0: The total amount of wall time = 183.303081 + 0: The maximum resident set size (KB) = 1107876 -Test 009 cpld_restart_c96_p8 PASS +Test 010 cpld_restart_c96_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_control_c192_p8 -Checking test 010 cpld_control_c192_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_control_c192_p8 +Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -619,15 +664,15 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1452.445913 - 0: The maximum resident set size (KB) = 1580280 + 0: The total amount of wall time = 1471.646290 + 0: The maximum resident set size (KB) = 1586896 -Test 010 cpld_control_c192_p8 PASS +Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_restart_c192_p8 -Checking test 011 cpld_restart_c192_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_restart_c192_p8 +Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -677,15 +722,15 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 958.477699 - 0: The maximum resident set size (KB) = 1802020 + 0: The total amount of wall time = 965.962094 + 0: The maximum resident set size (KB) = 1802860 -Test 011 cpld_restart_c192_p8 PASS +Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_control_c384_p8 -Checking test 012 cpld_control_c384_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_control_c384_p8 +Checking test 013 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -728,15 +773,15 @@ Checking test 012 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1166.292714 - 0: The maximum resident set size (KB) = 2819568 + 0: The total amount of wall time = 1166.170285 + 0: The maximum resident set size (KB) = 2825316 -Test 012 cpld_control_c384_p8 PASS +Test 013 cpld_control_c384_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_restart_c384_p8 -Checking test 013 cpld_restart_c384_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_restart_c384_p8 +Checking test 014 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -779,15 +824,15 @@ Checking test 013 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 659.069279 - 0: The maximum resident set size (KB) = 2793572 + 0: The total amount of wall time = 661.457255 + 0: The maximum resident set size (KB) = 2790924 -Test 013 cpld_restart_c384_p8 PASS +Test 014 cpld_restart_c384_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_debug_p8 -Checking test 014 cpld_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -837,15 +882,15 @@ Checking test 014 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1011.717822 - 0: The maximum resident set size (KB) = 1264956 + 0: The total amount of wall time = 1031.949654 + 0: The maximum resident set size (KB) = 1265336 -Test 014 cpld_debug_p8 PASS +Test 015 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control -Checking test 015 control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control +Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -891,15 +936,15 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.372119 - 0: The maximum resident set size (KB) = 466096 + 0: The total amount of wall time = 126.479059 + 0: The maximum resident set size (KB) = 465916 -Test 015 control PASS +Test 016 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_decomp -Checking test 016 control_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_decomp +Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -941,29 +986,29 @@ Checking test 016 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 133.553787 - 0: The maximum resident set size (KB) = 464812 + 0: The total amount of wall time = 138.297012 + 0: The maximum resident set size (KB) = 470148 -Test 016 control_decomp PASS +Test 017 control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_2dwrtdecomp -Checking test 017 control_2dwrtdecomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_2dwrtdecomp +Checking test 018 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 118.203005 - 0: The maximum resident set size (KB) = 468552 + 0: The total amount of wall time = 121.170707 + 0: The maximum resident set size (KB) = 470124 -Test 017 control_2dwrtdecomp PASS +Test 018 control_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_2threads -Checking test 018 control_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_2threads +Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1005,15 +1050,15 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 154.470275 - 0: The maximum resident set size (KB) = 521024 + 0: The total amount of wall time = 154.404316 + 0: The maximum resident set size (KB) = 517620 -Test 018 control_2threads PASS +Test 019 control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_restart -Checking test 019 control_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_restart +Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1051,15 +1096,15 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 65.915928 - 0: The maximum resident set size (KB) = 207112 + 0: The total amount of wall time = 68.466120 + 0: The maximum resident set size (KB) = 213892 -Test 019 control_restart PASS +Test 020 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_fhzero -Checking test 020 control_fhzero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_fhzero +Checking test 021 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1101,15 +1146,15 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.775603 - 0: The maximum resident set size (KB) = 469108 + 0: The total amount of wall time = 121.208022 + 0: The maximum resident set size (KB) = 465396 -Test 020 control_fhzero PASS +Test 021 control_fhzero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1135,15 +1180,15 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 121.486627 - 0: The maximum resident set size (KB) = 464364 + 0: The total amount of wall time = 122.576727 + 0: The maximum resident set size (KB) = 470028 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_latlon -Checking test 022 control_latlon results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_latlon +Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1153,15 +1198,15 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 128.036090 - 0: The maximum resident set size (KB) = 466472 + 0: The total amount of wall time = 124.884562 + 0: The maximum resident set size (KB) = 466608 -Test 022 control_latlon PASS +Test 023 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1171,15 +1216,15 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 129.826257 - 0: The maximum resident set size (KB) = 465108 + 0: The total amount of wall time = 127.365330 + 0: The maximum resident set size (KB) = 470368 -Test 023 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_c48 -Checking test 024 control_c48 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_c48 +Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1217,15 +1262,15 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 327.004750 -0: The maximum resident set size (KB) = 657972 +0: The total amount of wall time = 322.839466 +0: The maximum resident set size (KB) = 656828 -Test 024 control_c48 PASS +Test 025 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_c192 -Checking test 025 control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_c192 +Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1235,15 +1280,15 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 476.564408 - 0: The maximum resident set size (KB) = 563508 + 0: The total amount of wall time = 479.544474 + 0: The maximum resident set size (KB) = 564680 -Test 025 control_c192 PASS +Test 026 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_c384 -Checking test 026 control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_c384 +Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1253,15 +1298,15 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 789.133848 - 0: The maximum resident set size (KB) = 815852 + 0: The total amount of wall time = 779.287494 + 0: The maximum resident set size (KB) = 816364 -Test 026 control_c384 PASS +Test 027 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_c384gdas -Checking test 027 control_c384gdas results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_c384gdas +Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1303,15 +1348,15 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 692.647436 - 0: The maximum resident set size (KB) = 967456 + 0: The total amount of wall time = 692.466278 + 0: The maximum resident set size (KB) = 968860 -Test 027 control_c384gdas PASS +Test 028 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_stochy -Checking test 028 control_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_stochy +Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1321,29 +1366,29 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.936169 - 0: The maximum resident set size (KB) = 467348 + 0: The total amount of wall time = 84.224472 + 0: The maximum resident set size (KB) = 466776 -Test 028 control_stochy PASS +Test 029 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_stochy_restart -Checking test 029 control_stochy_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_stochy_restart +Checking test 030 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 = 44.379891 - 0: The maximum resident set size (KB) = 249900 + 0: The total amount of wall time = 44.713527 + 0: The maximum resident set size (KB) = 250256 -Test 029 control_stochy_restart PASS +Test 030 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_lndp -Checking test 030 control_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_lndp +Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1353,15 +1398,15 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 75.430361 - 0: The maximum resident set size (KB) = 470548 + 0: The total amount of wall time = 77.890517 + 0: The maximum resident set size (KB) = 470772 -Test 030 control_lndp PASS +Test 031 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_iovr4 -Checking test 031 control_iovr4 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_iovr4 +Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1375,15 +1420,15 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 126.698524 - 0: The maximum resident set size (KB) = 467188 + 0: The total amount of wall time = 126.187935 + 0: The maximum resident set size (KB) = 463188 -Test 031 control_iovr4 PASS +Test 032 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_iovr5 -Checking test 032 control_iovr5 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_iovr5 +Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1397,15 +1442,15 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 131.266183 - 0: The maximum resident set size (KB) = 469004 + 0: The total amount of wall time = 127.129099 + 0: The maximum resident set size (KB) = 461804 -Test 032 control_iovr5 PASS +Test 033 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_p8 -Checking test 033 control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_p8 +Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1451,18 +1496,68 @@ Checking test 033 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 149.775752 - 0: The maximum resident set size (KB) = 852052 + 0: The total amount of wall time = 152.049262 + 0: The maximum resident set size (KB) = 853896 + +Test 034 control_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_restart_p8 +Checking test 035 control_restart_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 82.809670 + 0: The maximum resident set size (KB) = 603492 -Test 033 control_p8 PASS +Test 035 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_restart_p8 -Checking test 034 control_restart_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_decomp_p8 +Checking test 036 control_decomp_p8 results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1497,15 +1592,15 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 82.157605 - 0: The maximum resident set size (KB) = 601112 + 0: The total amount of wall time = 152.879227 + 0: The maximum resident set size (KB) = 847272 -Test 034 control_restart_p8 PASS +Test 036 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_decomp_p8 -Checking test 035 control_decomp_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_2threads_p8 +Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1547,22 +1642,26 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.450654 - 0: The maximum resident set size (KB) = 847308 + 0: The total amount of wall time = 184.680728 + 0: The maximum resident set size (KB) = 930332 -Test 035 control_decomp_p8 PASS +Test 037 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_2threads_p8 -Checking test 036 control_2threads_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p7_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_p7_rrtmgp +Checking test 038 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1597,15 +1696,15 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 185.835495 - 0: The maximum resident set size (KB) = 928712 + 0: The total amount of wall time = 187.086218 + 0: The maximum resident set size (KB) = 619472 -Test 036 control_2threads_p8 PASS +Test 038 control_p7_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p7_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_p7_rrtmgp -Checking test 037 control_p7_rrtmgp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_p8_rrtmgp +Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1651,15 +1750,15 @@ Checking test 037 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 184.539466 - 0: The maximum resident set size (KB) = 602296 + 0: The total amount of wall time = 200.999261 + 0: The maximum resident set size (KB) = 969868 -Test 037 control_p7_rrtmgp PASS +Test 039 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_control -Checking test 038 regional_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_control +Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1669,58 +1768,58 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 310.292645 - 0: The maximum resident set size (KB) = 580904 + 0: The total amount of wall time = 312.381827 + 0: The maximum resident set size (KB) = 583956 -Test 038 regional_control PASS +Test 040 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_restart -Checking test 039 regional_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_restart +Checking test 041 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 172.333081 - 0: The maximum resident set size (KB) = 581552 + 0: The total amount of wall time = 170.076202 + 0: The maximum resident set size (KB) = 582892 -Test 039 regional_restart PASS +Test 041 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_control_2dwrtdecomp -Checking test 040 regional_control_2dwrtdecomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_control_2dwrtdecomp +Checking test 042 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 308.921959 - 0: The maximum resident set size (KB) = 580260 + 0: The total amount of wall time = 309.682565 + 0: The maximum resident set size (KB) = 581796 -Test 040 regional_control_2dwrtdecomp PASS +Test 042 regional_control_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_noquilt -Checking test 041 regional_noquilt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_noquilt +Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 324.236067 - 0: The maximum resident set size (KB) = 595212 + 0: The total amount of wall time = 323.653195 + 0: The maximum resident set size (KB) = 596272 -Test 041 regional_noquilt PASS +Test 043 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_2threads -Checking test 042 regional_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_2threads +Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1730,15 +1829,15 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 239.018049 - 0: The maximum resident set size (KB) = 578352 + 0: The total amount of wall time = 240.776543 + 0: The maximum resident set size (KB) = 581200 -Test 042 regional_2threads PASS +Test 044 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_hafs -Checking test 043 regional_hafs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_hafs +Checking test 045 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1746,29 +1845,29 @@ Checking test 043 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 306.746668 - 0: The maximum resident set size (KB) = 581724 + 0: The total amount of wall time = 308.376639 + 0: The maximum resident set size (KB) = 581888 -Test 043 regional_hafs PASS +Test 045 regional_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_netcdf_parallel -Checking test 044 regional_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_netcdf_parallel +Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 309.479782 - 0: The maximum resident set size (KB) = 580092 + 0: The total amount of wall time = 308.021442 + 0: The maximum resident set size (KB) = 580664 -Test 044 regional_netcdf_parallel PASS +Test 046 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_RRTMGP -Checking test 045 regional_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_RRTMGP +Checking test 047 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1778,15 +1877,15 @@ Checking test 045 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 413.300298 - 0: The maximum resident set size (KB) = 699772 + 0: The total amount of wall time = 417.237589 + 0: The maximum resident set size (KB) = 694988 -Test 045 regional_RRTMGP PASS +Test 047 regional_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_3km -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_3km -Checking test 046 regional_3km results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_3km +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_3km +Checking test 048 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1796,15 +1895,69 @@ Checking test 046 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 244.119209 - 0: The maximum resident set size (KB) = 619416 + 0: The total amount of wall time = 251.074635 + 0: The maximum resident set size (KB) = 622016 + +Test 048 regional_3km PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_control +Checking test 049 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 358.412619 + 0: The maximum resident set size (KB) = 839000 -Test 046 regional_3km PASS +Test 049 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_control -Checking test 047 rap_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_rrtmgp +Checking test 050 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1850,15 +2003,15 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 358.381771 - 0: The maximum resident set size (KB) = 836620 + 0: The total amount of wall time = 413.397912 + 0: The maximum resident set size (KB) = 954260 -Test 047 rap_control PASS +Test 050 rap_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_spp_sppt_shum_skeb +Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1868,15 +2021,15 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 303.829600 - 0: The maximum resident set size (KB) = 926912 + 0: The total amount of wall time = 299.273968 + 0: The maximum resident set size (KB) = 934920 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_2threads -Checking test 049 rap_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_2threads +Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1922,15 +2075,15 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.397502 - 0: The maximum resident set size (KB) = 900820 + 0: The total amount of wall time = 443.154157 + 0: The maximum resident set size (KB) = 901324 -Test 049 rap_2threads PASS +Test 052 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_restart -Checking test 050 rap_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_restart +Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1968,15 +2121,15 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.066832 - 0: The maximum resident set size (KB) = 590988 + 0: The total amount of wall time = 184.999249 + 0: The maximum resident set size (KB) = 591108 -Test 050 rap_restart PASS +Test 053 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_sfcdiff -Checking test 051 rap_sfcdiff results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_sfcdiff +Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2022,15 +2175,15 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 365.873477 - 0: The maximum resident set size (KB) = 834572 + 0: The total amount of wall time = 364.869159 + 0: The maximum resident set size (KB) = 840348 -Test 051 rap_sfcdiff PASS +Test 054 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_sfcdiff_restart +Checking test 055 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2068,15 +2221,15 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.116252 - 0: The maximum resident set size (KB) = 592716 + 0: The total amount of wall time = 182.861655 + 0: The maximum resident set size (KB) = 591360 -Test 052 rap_sfcdiff_restart PASS +Test 055 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hrrr_control -Checking test 053 hrrr_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hrrr_control +Checking test 056 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2122,15 +2275,15 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.551051 - 0: The maximum resident set size (KB) = 837728 + 0: The total amount of wall time = 346.666016 + 0: The maximum resident set size (KB) = 835628 -Test 053 hrrr_control PASS +Test 056 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rrfs_v1beta -Checking test 054 rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rrfs_v1beta +Checking test 057 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2176,15 +2329,15 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.910907 - 0: The maximum resident set size (KB) = 833320 + 0: The total amount of wall time = 356.738409 + 0: The maximum resident set size (KB) = 838236 -Test 054 rrfs_v1beta PASS +Test 057 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rrfs_v1nssl -Checking test 055 rrfs_v1nssl results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rrfs_v1nssl +Checking test 058 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,15 +2351,15 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 430.427959 - 0: The maximum resident set size (KB) = 526488 + 0: The total amount of wall time = 444.412459 + 0: The maximum resident set size (KB) = 526224 -Test 055 rrfs_v1nssl PASS +Test 058 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rrfs_v1nssl_nohailnoccn -Checking test 056 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rrfs_v1nssl_nohailnoccn +Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2220,15 +2373,15 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 425.675817 - 0: The maximum resident set size (KB) = 518220 + 0: The total amount of wall time = 422.918008 + 0: The maximum resident set size (KB) = 523400 -Test 056 rrfs_v1nssl_nohailnoccn PASS +Test 059 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rrfs_conus13km_hrrr_warm -Checking test 057 rrfs_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rrfs_conus13km_hrrr_warm +Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2236,15 +2389,15 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 167.708509 - 0: The maximum resident set size (KB) = 668996 + 0: The total amount of wall time = 169.709590 + 0: The maximum resident set size (KB) = 671316 -Test 057 rrfs_conus13km_hrrr_warm PASS +Test 060 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rrfs_conus13km_radar_tten_warm -Checking test 058 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rrfs_conus13km_radar_tten_warm +Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2252,15 +2405,15 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 166.219417 - 0: The maximum resident set size (KB) = 667244 + 0: The total amount of wall time = 171.807376 + 0: The maximum resident set size (KB) = 670052 -Test 058 rrfs_conus13km_radar_tten_warm PASS +Test 061 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_rrtmgp -Checking test 059 control_rrtmgp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_rrtmgp +Checking test 062 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2270,15 +2423,15 @@ Checking test 059 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 203.180739 - 0: The maximum resident set size (KB) = 596240 + 0: The total amount of wall time = 200.387410 + 0: The maximum resident set size (KB) = 610268 -Test 059 control_rrtmgp PASS +Test 062 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_rrtmgp_c192 -Checking test 060 control_rrtmgp_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_rrtmgp_c192 +Checking test 063 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2288,15 +2441,15 @@ Checking test 060 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 531.797135 - 0: The maximum resident set size (KB) = 797516 + 0: The total amount of wall time = 527.194394 + 0: The maximum resident set size (KB) = 814752 -Test 060 control_rrtmgp_c192 PASS +Test 063 control_rrtmgp_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_csawmg -Checking test 061 control_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_csawmg +Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2306,15 +2459,15 @@ Checking test 061 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 316.620002 - 0: The maximum resident set size (KB) = 537400 + 0: The total amount of wall time = 322.282894 + 0: The maximum resident set size (KB) = 537116 -Test 061 control_csawmg PASS +Test 064 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_csawmgt -Checking test 062 control_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_csawmgt +Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2324,15 +2477,15 @@ Checking test 062 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 314.867609 - 0: The maximum resident set size (KB) = 535408 + 0: The total amount of wall time = 320.138700 + 0: The maximum resident set size (KB) = 535704 -Test 062 control_csawmgt PASS +Test 065 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_flake -Checking test 063 control_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_flake +Checking test 066 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2342,15 +2495,15 @@ Checking test 063 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 230.408854 - 0: The maximum resident set size (KB) = 538156 + 0: The total amount of wall time = 229.705052 + 0: The maximum resident set size (KB) = 535376 -Test 063 control_flake PASS +Test 066 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_ras -Checking test 064 control_ras results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_ras +Checking test 067 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2360,15 +2513,15 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 168.975182 - 0: The maximum resident set size (KB) = 502752 + 0: The total amount of wall time = 172.198861 + 0: The maximum resident set size (KB) = 499940 -Test 064 control_ras PASS +Test 067 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_thompson -Checking test 065 control_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_thompson +Checking test 068 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2378,15 +2531,15 @@ Checking test 065 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 218.803042 - 0: The maximum resident set size (KB) = 855720 + 0: The total amount of wall time = 218.676102 + 0: The maximum resident set size (KB) = 852628 -Test 065 control_thompson PASS +Test 068 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_thompson_no_aero -Checking test 066 control_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_thompson_no_aero +Checking test 069 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2396,55 +2549,55 @@ Checking test 066 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.166496 - 0: The maximum resident set size (KB) = 842944 + 0: The total amount of wall time = 213.182544 + 0: The maximum resident set size (KB) = 845136 -Test 066 control_thompson_no_aero PASS +Test 069 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_wam_repro -Checking test 067 control_wam results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_repro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_wam_repro +Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 116.331998 - 0: The maximum resident set size (KB) = 233944 + 0: The total amount of wall time = 119.449955 + 0: The maximum resident set size (KB) = 232196 -Test 067 control_wam PASS +Test 070 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_debug -Checking test 068 control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_debug +Checking test 071 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 = 143.274885 - 0: The maximum resident set size (KB) = 631636 + 0: The total amount of wall time = 146.386009 + 0: The maximum resident set size (KB) = 629404 -Test 068 control_debug PASS +Test 071 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_2threads_debug -Checking test 069 control_2threads_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_2threads_debug +Checking test 072 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.232159 - 0: The maximum resident set size (KB) = 683684 + 0: The total amount of wall time = 212.825206 + 0: The maximum resident set size (KB) = 681768 -Test 069 control_2threads_debug PASS +Test 072 control_2threads_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_CubedSphereGrid_debug -Checking test 070 control_CubedSphereGrid_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_CubedSphereGrid_debug +Checking test 073 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2470,429 +2623,429 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 155.814093 - 0: The maximum resident set size (KB) = 633232 + 0: The total amount of wall time = 157.282427 + 0: The maximum resident set size (KB) = 635236 -Test 070 control_CubedSphereGrid_debug PASS +Test 073 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_wrtGauss_netcdf_parallel_debug -Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_wrtGauss_netcdf_parallel_debug +Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.230345 - 0: The maximum resident set size (KB) = 635424 + 0: The total amount of wall time = 147.203460 + 0: The maximum resident set size (KB) = 632064 -Test 071 control_wrtGauss_netcdf_parallel_debug PASS +Test 074 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_stochy_debug -Checking test 072 control_stochy_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_stochy_debug +Checking test 075 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.687996 - 0: The maximum resident set size (KB) = 639276 + 0: The total amount of wall time = 166.087588 + 0: The maximum resident set size (KB) = 638520 -Test 072 control_stochy_debug PASS +Test 075 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_lndp_debug -Checking test 073 control_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_lndp_debug +Checking test 076 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.211896 - 0: The maximum resident set size (KB) = 637068 + 0: The total amount of wall time = 148.095598 + 0: The maximum resident set size (KB) = 640780 -Test 073 control_lndp_debug PASS +Test 076 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_rrtmgp_debug -Checking test 074 control_rrtmgp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_rrtmgp_debug +Checking test 077 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.918639 - 0: The maximum resident set size (KB) = 734224 + 0: The total amount of wall time = 157.796471 + 0: The maximum resident set size (KB) = 750284 -Test 074 control_rrtmgp_debug PASS +Test 077 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_csawmg_debug -Checking test 075 control_csawmg_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_csawmg_debug +Checking test 078 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 = 225.374152 - 0: The maximum resident set size (KB) = 673780 + 0: The total amount of wall time = 228.000084 + 0: The maximum resident set size (KB) = 673760 -Test 075 control_csawmg_debug PASS +Test 078 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_csawmgt_debug -Checking test 076 control_csawmgt_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_csawmgt_debug +Checking test 079 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 = 220.559349 - 0: The maximum resident set size (KB) = 678188 + 0: The total amount of wall time = 223.569965 + 0: The maximum resident set size (KB) = 674576 -Test 076 control_csawmgt_debug PASS +Test 079 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_ras_debug -Checking test 077 control_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_ras_debug +Checking test 080 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.302190 - 0: The maximum resident set size (KB) = 643680 + 0: The total amount of wall time = 152.006571 + 0: The maximum resident set size (KB) = 641268 -Test 077 control_ras_debug PASS +Test 080 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_diag_debug -Checking test 078 control_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_diag_debug +Checking test 081 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 = 151.834102 - 0: The maximum resident set size (KB) = 686504 + 0: The total amount of wall time = 155.087526 + 0: The maximum resident set size (KB) = 687120 -Test 078 control_diag_debug PASS +Test 081 control_diag_debug PASS Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_debug_p8 -Checking test 079 control_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_debug_p8 +Checking test 082 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 = 155.237298 - 0: The maximum resident set size (KB) = 1020572 + 0: The total amount of wall time = 158.252937 + 0: The maximum resident set size (KB) = 1019104 -Test 079 control_debug_p8 PASS +Test 082 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_thompson_debug -Checking test 080 control_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_thompson_debug +Checking test 083 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.517123 - 0: The maximum resident set size (KB) = 994896 + 0: The total amount of wall time = 168.241357 + 0: The maximum resident set size (KB) = 998376 -Test 080 control_thompson_debug PASS +Test 083 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_thompson_no_aero_debug -Checking test 081 control_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_thompson_no_aero_debug +Checking test 084 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.647959 - 0: The maximum resident set size (KB) = 990716 + 0: The total amount of wall time = 166.649360 + 0: The maximum resident set size (KB) = 988116 -Test 081 control_thompson_no_aero_debug PASS +Test 084 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_thompson_extdiag_debug -Checking test 082 control_thompson_extdiag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_thompson_extdiag_debug +Checking test 085 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.038526 - 0: The maximum resident set size (KB) = 1024824 + 0: The total amount of wall time = 179.231764 + 0: The maximum resident set size (KB) = 1025444 -Test 082 control_thompson_extdiag_debug PASS +Test 085 control_thompson_extdiag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_thompson_progcld_thompson_debug -Checking test 083 control_thompson_progcld_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_thompson_progcld_thompson_debug +Checking test 086 control_thompson_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 = 166.356744 - 0: The maximum resident set size (KB) = 996984 + 0: The total amount of wall time = 167.137299 + 0: The maximum resident set size (KB) = 997628 -Test 083 control_thompson_progcld_thompson_debug PASS +Test 086 control_thompson_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_debug -Checking test 084 regional_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/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 = 234.198255 - 0: The maximum resident set size (KB) = 609532 + 0: The total amount of wall time = 236.446248 + 0: The maximum resident set size (KB) = 606320 -Test 084 regional_debug PASS +Test 087 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_control_debug -Checking test 085 rap_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/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 = 256.796934 - 0: The maximum resident set size (KB) = 998176 + 0: The total amount of wall time = 261.824288 + 0: The maximum resident set size (KB) = 999928 -Test 085 rap_control_debug PASS +Test 088 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_unified_drag_suite_debug -Checking test 086 rap_unified_drag_suite_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_unified_drag_suite_debug +Checking test 089 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 = 263.231932 - 0: The maximum resident set size (KB) = 998176 + 0: The total amount of wall time = 264.983837 + 0: The maximum resident set size (KB) = 1004244 -Test 086 rap_unified_drag_suite_debug PASS +Test 089 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_diag_debug -Checking test 087 rap_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_diag_debug +Checking test 090 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 = 273.388043 - 0: The maximum resident set size (KB) = 1083660 + 0: The total amount of wall time = 274.069717 + 0: The maximum resident set size (KB) = 1081104 -Test 087 rap_diag_debug PASS +Test 090 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_cires_ugwp_debug -Checking test 088 rap_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_cires_ugwp_debug +Checking test 091 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 = 267.475006 - 0: The maximum resident set size (KB) = 1001248 + 0: The total amount of wall time = 265.646072 + 0: The maximum resident set size (KB) = 1000392 -Test 088 rap_cires_ugwp_debug PASS +Test 091 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_unified_ugwp_debug -Checking test 089 rap_unified_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_unified_ugwp_debug +Checking test 092 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 = 261.485886 - 0: The maximum resident set size (KB) = 999780 + 0: The total amount of wall time = 265.046573 + 0: The maximum resident set size (KB) = 998188 -Test 089 rap_unified_ugwp_debug PASS +Test 092 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_lndp_debug -Checking test 090 rap_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_lndp_debug +Checking test 093 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 = 260.347459 - 0: The maximum resident set size (KB) = 998492 + 0: The total amount of wall time = 265.701689 + 0: The maximum resident set size (KB) = 1000348 -Test 090 rap_lndp_debug PASS +Test 093 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_flake_debug -Checking test 091 rap_flake_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_flake_debug +Checking test 094 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 = 257.478732 - 0: The maximum resident set size (KB) = 1003868 + 0: The total amount of wall time = 259.383638 + 0: The maximum resident set size (KB) = 999284 -Test 091 rap_flake_debug PASS +Test 094 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_progcld_thompson_debug -Checking test 092 rap_progcld_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_progcld_thompson_debug +Checking test 095 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 = 257.470189 - 0: The maximum resident set size (KB) = 998508 + 0: The total amount of wall time = 257.532620 + 0: The maximum resident set size (KB) = 996660 -Test 092 rap_progcld_thompson_debug PASS +Test 095 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_noah_debug -Checking test 093 rap_noah_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_noah_debug +Checking test 096 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 = 256.951144 - 0: The maximum resident set size (KB) = 1001236 + 0: The total amount of wall time = 259.854234 + 0: The maximum resident set size (KB) = 997528 -Test 093 rap_noah_debug PASS +Test 096 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_rrtmgp_debug -Checking test 094 rap_rrtmgp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_rrtmgp_debug +Checking test 097 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 442.451325 - 0: The maximum resident set size (KB) = 1112196 + 0: The total amount of wall time = 450.392539 + 0: The maximum resident set size (KB) = 1121384 -Test 094 rap_rrtmgp_debug PASS +Test 097 rap_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_sfcdiff_debug -Checking test 095 rap_sfcdiff_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/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 = 256.717936 - 0: The maximum resident set size (KB) = 998884 + 0: The total amount of wall time = 261.861999 + 0: The maximum resident set size (KB) = 998164 -Test 095 rap_sfcdiff_debug PASS +Test 098 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/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 = 430.556309 - 0: The maximum resident set size (KB) = 1003512 + 0: The total amount of wall time = 432.709496 + 0: The maximum resident set size (KB) = 1001200 -Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rrfs_v1beta_debug -Checking test 097 rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/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 = 258.435132 - 0: The maximum resident set size (KB) = 999336 + 0: The total amount of wall time = 259.410765 + 0: The maximum resident set size (KB) = 994064 -Test 097 rrfs_v1beta_debug PASS +Test 100 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_wam_debug -Checking test 098 control_wam_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/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 = 275.037193 - 0: The maximum resident set size (KB) = 254916 + 0: The total amount of wall time = 288.597479 + 0: The maximum resident set size (KB) = 256668 -Test 098 control_wam_debug PASS +Test 101 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_atm -Checking test 099 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_atm +Checking test 102 hafs_regional_atm results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 283.698861 - 0: The maximum resident set size (KB) = 714276 + 0: The total amount of wall time = 288.035878 + 0: The maximum resident set size (KB) = 707136 -Test 099 hafs_regional_atm PASS +Test 102 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_atm_thompson_gfdlsf -Checking test 100 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_atm_thompson_gfdlsf +Checking test 103 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 338.245785 - 0: The maximum resident set size (KB) = 1067988 + 0: The total amount of wall time = 331.736160 + 0: The maximum resident set size (KB) = 1065404 -Test 100 hafs_regional_atm_thompson_gfdlsf PASS +Test 103 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_atm_ocn -Checking test 101 hafs_regional_atm_ocn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_atm_ocn +Checking test 104 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2900,29 +3053,29 @@ Checking test 101 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 = 363.904236 - 0: The maximum resident set size (KB) = 723864 + 0: The total amount of wall time = 381.569759 + 0: The maximum resident set size (KB) = 725828 -Test 101 hafs_regional_atm_ocn PASS +Test 104 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_atm_wav -Checking test 102 hafs_regional_atm_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_atm_wav +Checking test 105 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 817.707323 - 0: The maximum resident set size (KB) = 724328 + 0: The total amount of wall time = 847.118424 + 0: The maximum resident set size (KB) = 725500 -Test 102 hafs_regional_atm_wav PASS +Test 105 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_atm_ocn_wav -Checking test 103 hafs_regional_atm_ocn_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_atm_ocn_wav +Checking test 106 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2930,29 +3083,29 @@ Checking test 103 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 892.639842 - 0: The maximum resident set size (KB) = 725184 + 0: The total amount of wall time = 923.214259 + 0: The maximum resident set size (KB) = 728364 -Test 103 hafs_regional_atm_ocn_wav PASS +Test 106 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_1nest_atm -Checking test 104 hafs_regional_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_1nest_atm +Checking test 107 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 = 425.688474 - 0: The maximum resident set size (KB) = 319744 + 0: The total amount of wall time = 424.137645 + 0: The maximum resident set size (KB) = 321672 -Test 104 hafs_regional_1nest_atm PASS +Test 107 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_telescopic_2nests_atm -Checking test 105 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_telescopic_2nests_atm +Checking test 108 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2960,30 +3113,30 @@ Checking test 105 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 = 439.757413 - 0: The maximum resident set size (KB) = 327760 + 0: The total amount of wall time = 441.406153 + 0: The maximum resident set size (KB) = 330416 -Test 105 hafs_regional_telescopic_2nests_atm PASS +Test 108 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_global_1nest_atm -Checking test 106 hafs_global_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_global_1nest_atm +Checking test 109 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 = 200.366210 - 0: The maximum resident set size (KB) = 205736 + 0: The total amount of wall time = 195.625208 + 0: The maximum resident set size (KB) = 205080 -Test 106 hafs_global_1nest_atm PASS +Test 109 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_global_multiple_4nests_atm -Checking test 107 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_global_multiple_4nests_atm +Checking test 110 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK @@ -2992,151 +3145,151 @@ Checking test 107 hafs_global_multiple_4nests_atm results .... Comparing sfc.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc .........OK - 0: The total amount of wall time = 538.791673 - 0: The maximum resident set size (KB) = 275816 + 0: The total amount of wall time = 536.178251 + 0: The maximum resident set size (KB) = 279364 -Test 107 hafs_global_multiple_4nests_atm PASS +Test 110 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_docn -Checking test 108 hafs_regional_docn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_docn +Checking test 111 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 353.762547 - 0: The maximum resident set size (KB) = 723064 + 0: The total amount of wall time = 356.740127 + 0: The maximum resident set size (KB) = 723352 -Test 108 hafs_regional_docn PASS +Test 111 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_docn_oisst -Checking test 109 hafs_regional_docn_oisst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_docn_oisst +Checking test 112 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 347.724512 - 0: The maximum resident set size (KB) = 723024 + 0: The total amount of wall time = 356.120307 + 0: The maximum resident set size (KB) = 727604 -Test 109 hafs_regional_docn_oisst PASS +Test 112 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_datm_cdeps -Checking test 110 hafs_regional_datm_cdeps results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_datm_cdeps +Checking test 113 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 = 948.455679 - 0: The maximum resident set size (KB) = 853164 + 0: The total amount of wall time = 943.798737 + 0: The maximum resident set size (KB) = 854320 -Test 110 hafs_regional_datm_cdeps PASS +Test 113 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_control_cfsr -Checking test 111 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_control_cfsr +Checking test 114 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.271738 - 0: The maximum resident set size (KB) = 717436 + 0: The total amount of wall time = 141.503322 + 0: The maximum resident set size (KB) = 717100 -Test 111 datm_cdeps_control_cfsr PASS +Test 114 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_restart_cfsr -Checking test 112 datm_cdeps_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_restart_cfsr +Checking test 115 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 84.120973 - 0: The maximum resident set size (KB) = 717852 + 0: The total amount of wall time = 83.441899 + 0: The maximum resident set size (KB) = 716284 -Test 112 datm_cdeps_restart_cfsr PASS +Test 115 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_control_gefs -Checking test 113 datm_cdeps_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_control_gefs +Checking test 116 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 137.994428 - 0: The maximum resident set size (KB) = 619300 + 0: The total amount of wall time = 137.339841 + 0: The maximum resident set size (KB) = 618776 -Test 113 datm_cdeps_control_gefs PASS +Test 116 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_iau_gefs -Checking test 114 datm_cdeps_iau_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_iau_gefs +Checking test 117 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.799807 - 0: The maximum resident set size (KB) = 617928 + 0: The total amount of wall time = 139.324199 + 0: The maximum resident set size (KB) = 618164 -Test 114 datm_cdeps_iau_gefs PASS +Test 117 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_stochy_gefs -Checking test 115 datm_cdeps_stochy_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_stochy_gefs +Checking test 118 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.749022 - 0: The maximum resident set size (KB) = 618972 + 0: The total amount of wall time = 138.603369 + 0: The maximum resident set size (KB) = 618808 -Test 115 datm_cdeps_stochy_gefs PASS +Test 118 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_bulk_cfsr -Checking test 116 datm_cdeps_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_bulk_cfsr +Checking test 119 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.709735 - 0: The maximum resident set size (KB) = 718780 + 0: The total amount of wall time = 142.647230 + 0: The maximum resident set size (KB) = 717984 -Test 116 datm_cdeps_bulk_cfsr PASS +Test 119 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_bulk_gefs -Checking test 117 datm_cdeps_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_bulk_gefs +Checking test 120 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 138.020230 - 0: The maximum resident set size (KB) = 619680 + 0: The total amount of wall time = 137.693893 + 0: The maximum resident set size (KB) = 618980 -Test 117 datm_cdeps_bulk_gefs PASS +Test 120 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_mx025_cfsr -Checking test 118 datm_cdeps_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_mx025_cfsr +Checking test 121 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3144,15 +3297,15 @@ Checking test 118 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 = 302.544316 - 0: The maximum resident set size (KB) = 565664 + 0: The total amount of wall time = 303.764881 + 0: The maximum resident set size (KB) = 564856 -Test 118 datm_cdeps_mx025_cfsr PASS +Test 121 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_mx025_gefs -Checking test 119 datm_cdeps_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_mx025_gefs +Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3160,65 +3313,65 @@ Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 298.944627 - 0: The maximum resident set size (KB) = 528232 + 0: The total amount of wall time = 301.182670 + 0: The maximum resident set size (KB) = 534700 -Test 119 datm_cdeps_mx025_gefs PASS +Test 122 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_multiple_files_cfsr -Checking test 120 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_multiple_files_cfsr +Checking test 123 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 = 141.129115 - 0: The maximum resident set size (KB) = 717668 + 0: The total amount of wall time = 141.536715 + 0: The maximum resident set size (KB) = 717660 -Test 120 datm_cdeps_multiple_files_cfsr PASS +Test 123 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_3072x1536_cfsr -Checking test 121 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_3072x1536_cfsr +Checking test 124 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 192.884427 - 0: The maximum resident set size (KB) = 1895324 + 0: The total amount of wall time = 192.133892 + 0: The maximum resident set size (KB) = 1831712 -Test 121 datm_cdeps_3072x1536_cfsr PASS +Test 124 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_gfs -Checking test 122 datm_cdeps_gfs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_gfs +Checking test 125 datm_cdeps_gfs results .... Comparing RESTART/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 = 194.957354 - 0: The maximum resident set size (KB) = 1830900 + 0: The total amount of wall time = 193.858180 + 0: The maximum resident set size (KB) = 1832280 -Test 122 datm_cdeps_gfs PASS +Test 125 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_debug_cfsr -Checking test 123 datm_cdeps_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_debug_cfsr +Checking test 126 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 441.512949 - 0: The maximum resident set size (KB) = 723064 + 0: The total amount of wall time = 441.359343 + 0: The maximum resident set size (KB) = 724168 -Test 123 datm_cdeps_debug_cfsr PASS +Test 126 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_atmwav -Checking test 124 control_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_atmwav +Checking test 127 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3261,15 +3414,15 @@ Checking test 124 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 82.692512 - 0: The maximum resident set size (KB) = 497704 + 0: The total amount of wall time = 80.649752 + 0: The maximum resident set size (KB) = 492000 -Test 124 control_atmwav PASS +Test 127 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_c384gdas_wav -Checking test 125 control_c384gdas_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_c384gdas_wav +Checking test 128 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3314,15 +3467,15 @@ Checking test 125 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 675.548329 - 0: The maximum resident set size (KB) = 1045084 + 0: The total amount of wall time = 678.474992 + 0: The maximum resident set size (KB) = 1049184 -Test 125 control_c384gdas_wav PASS +Test 128 control_c384gdas_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_atm_aerosols -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_atm_aerosols -Checking test 126 control_atm_aerosols results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_atm_aerosols +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_atm_aerosols +Checking test 129 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3368,12 +3521,12 @@ Checking test 126 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.505559 - 0: The maximum resident set size (KB) = 909764 + 0: The total amount of wall time = 281.555077 + 0: The maximum resident set size (KB) = 912584 -Test 126 control_atm_aerosols PASS +Test 129 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 4 16:43:47 UTC 2022 -Elapsed time: 01h:11m:02s. Have a nice day! +Tue Apr 5 23:53:03 UTC 2022 +Elapsed time: 00h:58m:23s. Have a nice day! From 3e381735148613332b5124a807332b488aa8c21a Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 6 Apr 2022 02:20:29 +0000 Subject: [PATCH 35/57] Update RTs --- tests/rt.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/rt.conf b/tests/rt.conf index 0ee3413064..f87e3523ed 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -2,14 +2,14 @@ # S2S tests # ################################################################################################################################################################################### -COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp | - wcoss_cray | fv3 | +COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp | - wcoss_cray | fv3 | RUN | cpld_control_p8 | - wcoss_cray | fv3 | +RUN | cpld_control_p8_rrtmgp | - wcoss_cray | fv3 | RUN | cpld_2threads_p8 | - wcoss_cray | | RUN | cpld_decomp_p8 | - wcoss_cray jet.intel | | RUN | cpld_mpi_p8 | - wcoss_cray | | RUN | cpld_bmark_p7 | - wcoss_cray | fv3 | -RUN | cpld_bmark_p7_rrtmgp | - wcoss_cray | fv3 | RUN | cpld_bmark_p8 | - wcoss_cray jet.intel | fv3 | RUN | cpld_bmark_p8_rrtmgp | - wcoss_cray jet.intel | fv3 | From da5c415c4784757a3c41dfadfb3b2d8701a49fdd Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 5 Apr 2022 21:59:29 -0600 Subject: [PATCH 36/57] [AutoRT] cheyenne.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_cheyenne.intel.log | 1703 ++++++++++++---------- 1 file changed, 928 insertions(+), 775 deletions(-) diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 03c764b0c5..bee9607697 100755 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,24 +1,24 @@ -Mon Apr 4 09:31:28 MDT 2022 +Tue Apr 5 20:14:19 MDT 2022 Start Regression test -Compile 001 elapsed time 1073 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 393 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 679 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 678 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 728 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 380 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 1099 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 426 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 723 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 378 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 008 elapsed time 311 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 325 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 778 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 753 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 437 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 226 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 627 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_control_p8 +Compile 009 elapsed time 323 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 757 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 720 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 435 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 219 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 624 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 413.551112 -0:The maximum resident set size (KB) = 2762416 +0:The total amount of wall time = 411.951201 +0:The maximum resident set size (KB) = 2762184 Test 001 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 835.960960 -0:The maximum resident set size (KB) = 3090716 +0:The total amount of wall time = 830.894582 +0:The maximum resident set size (KB) = 3090620 Test 002 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 408.013668 -0:The maximum resident set size (KB) = 2754160 +0:The total amount of wall time = 409.877451 +0:The maximum resident set size (KB) = 2754344 Test 003 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -267,27 +267,19 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 345.028661 -0:The maximum resident set size (KB) = 2675752 +0:The total amount of wall time = 342.476550 +0:The maximum resident set size (KB) = 2676088 Test 004 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p7_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_control_p7_rrtmgp -Checking test 005 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_bmark_p7 +Checking test 005 cpld_bmark_p7 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -321,21 +313,21 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/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_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 320.658018 -0:The maximum resident set size (KB) = 633184 +0:The total amount of wall time = 989.760959 +0:The maximum resident set size (KB) = 1210152 -Test 005 cpld_control_p7_rrtmgp PASS +Test 005 cpld_bmark_p7 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p7 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_bmark_p7 -Checking test 006 cpld_bmark_p7 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_bmark_p7_rrtmgp +Checking test 006 cpld_bmark_p7_rrtmgp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -379,14 +371,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 975.138069 -0:The maximum resident set size (KB) = 1209828 +0:The total amount of wall time = 1138.094977 +0:The maximum resident set size (KB) = 1338392 -Test 006 cpld_bmark_p7 PASS +Test 006 cpld_bmark_p7_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_bmark_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -432,15 +424,68 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 1315.530429 -0:The maximum resident set size (KB) = 3655528 +0:The total amount of wall time = 1323.704512 +0:The maximum resident set size (KB) = 3655168 Test 007 cpld_bmark_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_control_c96_p8 -Checking test 008 cpld_control_c96_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_bmark_p8_rrtmgp +Checking test 008 cpld_bmark_p8_rrtmgp results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + +0:The total amount of wall time = 1342.881196 +0:The maximum resident set size (KB) = 3908288 + +Test 008 cpld_bmark_p8_rrtmgp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_control_c96_p8 +Checking test 009 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -502,15 +547,15 @@ Checking test 008 cpld_control_c96_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 = 408.831667 -0:The maximum resident set size (KB) = 2759968 +0:The total amount of wall time = 410.958911 +0:The maximum resident set size (KB) = 2759188 -Test 008 cpld_control_c96_p8 PASS +Test 009 cpld_control_c96_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_restart_c96_p8 -Checking test 009 cpld_restart_c96_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_restart_c96_p8 +Checking test 010 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -560,15 +605,15 @@ Checking test 009 cpld_restart_c96_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 = 225.357649 -0:The maximum resident set size (KB) = 2719660 +0:The total amount of wall time = 227.843196 +0:The maximum resident set size (KB) = 2721064 -Test 009 cpld_restart_c96_p8 PASS +Test 010 cpld_restart_c96_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_control_c192_p8 -Checking test 010 cpld_control_c192_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_control_c192_p8 +Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -618,15 +663,15 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -0:The total amount of wall time = 1367.080843 -0:The maximum resident set size (KB) = 2801452 +0:The total amount of wall time = 1362.354931 +0:The maximum resident set size (KB) = 2801100 -Test 010 cpld_control_c192_p8 PASS +Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_restart_c192_p8 -Checking test 011 cpld_restart_c192_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_restart_c192_p8 +Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -676,15 +721,15 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -0:The total amount of wall time = 896.286507 -0:The maximum resident set size (KB) = 2769844 +0:The total amount of wall time = 905.710278 +0:The maximum resident set size (KB) = 2769140 -Test 011 cpld_restart_c192_p8 PASS +Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_control_c384_p8 -Checking test 012 cpld_control_c384_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_control_c384_p8 +Checking test 013 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -727,15 +772,15 @@ Checking test 012 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 1483.265249 -0:The maximum resident set size (KB) = 3661416 +0:The total amount of wall time = 1430.111378 +0:The maximum resident set size (KB) = 3660740 -Test 012 cpld_control_c384_p8 PASS +Test 013 cpld_control_c384_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_restart_c384_p8 -Checking test 013 cpld_restart_c384_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_restart_c384_p8 +Checking test 014 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -778,15 +823,15 @@ Checking test 013 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 829.698073 -0:The maximum resident set size (KB) = 3623720 +0:The total amount of wall time = 883.184922 +0:The maximum resident set size (KB) = 3626988 -Test 013 cpld_restart_c384_p8 PASS +Test 014 cpld_restart_c384_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_debug_p8 -Checking test 014 cpld_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -836,15 +881,15 @@ Checking test 014 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 1078.293392 -0:The maximum resident set size (KB) = 2829828 +0:The total amount of wall time = 1072.411143 +0:The maximum resident set size (KB) = 2829928 -Test 014 cpld_debug_p8 PASS +Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control -Checking test 015 control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control +Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -890,15 +935,15 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 152.878909 -0:The maximum resident set size (KB) = 447016 +0:The total amount of wall time = 148.836842 +0:The maximum resident set size (KB) = 446936 -Test 015 control PASS +Test 016 control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_decomp -Checking test 016 control_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_decomp +Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -940,29 +985,29 @@ Checking test 016 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 155.848559 -0:The maximum resident set size (KB) = 445536 +0:The total amount of wall time = 154.733568 +0:The maximum resident set size (KB) = 445160 -Test 016 control_decomp PASS +Test 017 control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_2dwrtdecomp -Checking test 017 control_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_2dwrtdecomp +Checking test 018 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 147.064388 -0:The maximum resident set size (KB) = 447140 +0:The total amount of wall time = 145.957024 +0:The maximum resident set size (KB) = 447132 -Test 017 control_2dwrtdecomp PASS +Test 018 control_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_2threads -Checking test 018 control_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_2threads +Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1004,15 +1049,15 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 327.970344 -0:The maximum resident set size (KB) = 498208 +0:The total amount of wall time = 323.804705 +0:The maximum resident set size (KB) = 499284 -Test 018 control_2threads PASS +Test 019 control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_restart -Checking test 019 control_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_restart +Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1050,15 +1095,15 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 77.977455 -0:The maximum resident set size (KB) = 191740 +0:The total amount of wall time = 78.348785 +0:The maximum resident set size (KB) = 191344 -Test 019 control_restart PASS +Test 020 control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_fhzero -Checking test 020 control_fhzero results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_fhzero +Checking test 021 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1100,15 +1145,15 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 144.408964 -0:The maximum resident set size (KB) = 447008 +0:The total amount of wall time = 143.909455 +0:The maximum resident set size (KB) = 446956 -Test 020 control_fhzero PASS +Test 021 control_fhzero PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1134,15 +1179,15 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 146.835638 -0:The maximum resident set size (KB) = 446616 +0:The total amount of wall time = 147.222790 +0:The maximum resident set size (KB) = 446864 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_latlon -Checking test 022 control_latlon results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_latlon +Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1152,33 +1197,33 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.518801 -0:The maximum resident set size (KB) = 446640 +0:The total amount of wall time = 149.484197 +0:The maximum resident set size (KB) = 447060 -Test 022 control_latlon PASS +Test 023 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 152.123205 -0:The maximum resident set size (KB) = 446540 +0:The total amount of wall time = 150.164112 +0:The maximum resident set size (KB) = 446564 -Test 023 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_c48 -Checking test 024 control_c48 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_c48 +Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1216,15 +1261,15 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 440.005185 -0:The maximum resident set size (KB) = 629824 +0:The total amount of wall time = 442.304430 +0:The maximum resident set size (KB) = 630216 -Test 024 control_c48 PASS +Test 025 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_c192 -Checking test 025 control_c192 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_c192 +Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1234,15 +1279,15 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 615.547719 -0:The maximum resident set size (KB) = 545092 +0:The total amount of wall time = 612.344070 +0:The maximum resident set size (KB) = 545100 -Test 025 control_c192 PASS +Test 026 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_c384 -Checking test 026 control_c384 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_c384 +Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1252,15 +1297,15 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1125.931713 -0:The maximum resident set size (KB) = 799276 +0:The total amount of wall time = 1119.946325 +0:The maximum resident set size (KB) = 798752 -Test 026 control_c384 PASS +Test 027 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_c384gdas -Checking test 027 control_c384gdas results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_c384gdas +Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1302,15 +1347,15 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 971.598948 -0:The maximum resident set size (KB) = 951300 +0:The total amount of wall time = 949.685113 +0:The maximum resident set size (KB) = 951276 -Test 027 control_c384gdas PASS +Test 028 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_stochy -Checking test 028 control_stochy results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_stochy +Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1320,29 +1365,29 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 99.445614 -0:The maximum resident set size (KB) = 448688 +0:The total amount of wall time = 97.629714 +0:The maximum resident set size (KB) = 449100 -Test 028 control_stochy PASS +Test 029 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_stochy_restart -Checking test 029 control_stochy_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_stochy_restart +Checking test 030 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 = 52.415369 -0:The maximum resident set size (KB) = 225360 +0:The total amount of wall time = 52.208105 +0:The maximum resident set size (KB) = 225172 -Test 029 control_stochy_restart PASS +Test 030 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_lndp -Checking test 030 control_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_lndp +Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1352,15 +1397,15 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.492501 -0:The maximum resident set size (KB) = 450960 +0:The total amount of wall time = 89.764995 +0:The maximum resident set size (KB) = 450664 -Test 030 control_lndp PASS +Test 031 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_iovr4 -Checking test 031 control_iovr4 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_iovr4 +Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1374,15 +1419,15 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 151.758120 -0:The maximum resident set size (KB) = 446596 +0:The total amount of wall time = 151.461872 +0:The maximum resident set size (KB) = 446644 -Test 031 control_iovr4 PASS +Test 032 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_iovr5 -Checking test 032 control_iovr5 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_iovr5 +Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1396,15 +1441,15 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 151.712311 -0:The maximum resident set size (KB) = 446644 +0:The total amount of wall time = 148.185189 +0:The maximum resident set size (KB) = 446604 -Test 032 control_iovr5 PASS +Test 033 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_p8 -Checking test 033 control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_p8 +Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1450,15 +1495,15 @@ Checking test 033 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 178.921655 -0:The maximum resident set size (KB) = 842112 +0:The total amount of wall time = 178.991815 +0:The maximum resident set size (KB) = 842060 -Test 033 control_p8 PASS +Test 034 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_restart_p8 -Checking test 034 control_restart_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_restart_p8 +Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1496,15 +1541,15 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 96.806502 -0:The maximum resident set size (KB) = 577648 +0:The total amount of wall time = 95.117271 +0:The maximum resident set size (KB) = 577752 -Test 034 control_restart_p8 PASS +Test 035 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_decomp_p8 -Checking test 035 control_decomp_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_decomp_p8 +Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1546,15 +1591,15 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.589698 -0:The maximum resident set size (KB) = 835648 +0:The total amount of wall time = 178.200126 +0:The maximum resident set size (KB) = 835972 -Test 035 control_decomp_p8 PASS +Test 036 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_2threads_p8 -Checking test 036 control_2threads_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_2threads_p8 +Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1596,15 +1641,15 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 435.651624 -0:The maximum resident set size (KB) = 916440 +0:The total amount of wall time = 435.422929 +0:The maximum resident set size (KB) = 916628 -Test 036 control_2threads_p8 PASS +Test 037 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p7_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_p7_rrtmgp -Checking test 037 control_p7_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p7_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_p7_rrtmgp +Checking test 038 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1650,15 +1695,69 @@ Checking test 037 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 239.536154 -0:The maximum resident set size (KB) = 585260 +0:The total amount of wall time = 239.567968 +0:The maximum resident set size (KB) = 601856 -Test 037 control_p7_rrtmgp PASS +Test 038 control_p7_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_control -Checking test 038 regional_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_p8_rrtmgp +Checking test 039 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 251.924994 +0:The maximum resident set size (KB) = 956568 + +Test 039 control_p8_rrtmgp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_control +Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1668,58 +1767,58 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 367.589568 -0:The maximum resident set size (KB) = 571764 +0:The total amount of wall time = 365.900279 +0:The maximum resident set size (KB) = 571808 -Test 038 regional_control PASS +Test 040 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_restart -Checking test 039 regional_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_restart +Checking test 041 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 199.795889 -0:The maximum resident set size (KB) = 562088 +0:The total amount of wall time = 199.109096 +0:The maximum resident set size (KB) = 562220 -Test 039 regional_restart PASS +Test 041 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_control_2dwrtdecomp -Checking test 040 regional_control_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_control_2dwrtdecomp +Checking test 042 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 361.782374 -0:The maximum resident set size (KB) = 571016 +0:The total amount of wall time = 361.485102 +0:The maximum resident set size (KB) = 571024 -Test 040 regional_control_2dwrtdecomp PASS +Test 042 regional_control_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_noquilt -Checking test 041 regional_noquilt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_noquilt +Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 385.074130 -0:The maximum resident set size (KB) = 577428 +0:The total amount of wall time = 381.100893 +0:The maximum resident set size (KB) = 578060 -Test 041 regional_noquilt PASS +Test 043 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_2threads -Checking test 042 regional_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_2threads +Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1729,15 +1828,15 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 943.489727 -0:The maximum resident set size (KB) = 558156 +0:The total amount of wall time = 944.359278 +0:The maximum resident set size (KB) = 557976 -Test 042 regional_2threads PASS +Test 044 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_hafs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_hafs -Checking test 043 regional_hafs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_hafs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_hafs +Checking test 045 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1745,29 +1844,29 @@ Checking test 043 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -0:The total amount of wall time = 357.801071 -0:The maximum resident set size (KB) = 560956 +0:The total amount of wall time = 371.061150 +0:The maximum resident set size (KB) = 560992 -Test 043 regional_hafs PASS +Test 045 regional_hafs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_netcdf_parallel -Checking test 044 regional_netcdf_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_netcdf_parallel +Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK -0:The total amount of wall time = 356.968170 -0:The maximum resident set size (KB) = 562004 +0:The total amount of wall time = 363.936026 +0:The maximum resident set size (KB) = 561940 -Test 044 regional_netcdf_parallel PASS +Test 046 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_RRTMGP -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_RRTMGP -Checking test 045 regional_RRTMGP results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_RRTMGP +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_RRTMGP +Checking test 047 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1777,15 +1876,15 @@ Checking test 045 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 503.717132 -0:The maximum resident set size (KB) = 684352 +0:The total amount of wall time = 537.913036 +0:The maximum resident set size (KB) = 678008 -Test 045 regional_RRTMGP PASS +Test 047 regional_RRTMGP PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_3km -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_3km -Checking test 046 regional_3km results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_3km +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_3km +Checking test 048 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1795,15 +1894,15 @@ Checking test 046 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 313.935111 -0:The maximum resident set size (KB) = 594960 +0:The total amount of wall time = 301.627084 +0:The maximum resident set size (KB) = 595004 -Test 046 regional_3km PASS +Test 048 regional_3km PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_control -Checking test 047 rap_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_control +Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1849,15 +1948,69 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 422.629394 -0:The maximum resident set size (KB) = 811716 +0:The total amount of wall time = 423.779432 +0:The maximum resident set size (KB) = 811592 -Test 047 rap_control PASS +Test 049 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_rrtmgp +Checking test 050 rap_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 496.541432 +0:The maximum resident set size (KB) = 942664 + +Test 050 rap_rrtmgp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_spp_sppt_shum_skeb +Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1867,15 +2020,15 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 639.764388 -0:The maximum resident set size (KB) = 941576 +0:The total amount of wall time = 653.976692 +0:The maximum resident set size (KB) = 942916 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_2threads -Checking test 049 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_2threads +Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1921,15 +2074,15 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 886.404302 -0:The maximum resident set size (KB) = 878728 +0:The total amount of wall time = 897.190344 +0:The maximum resident set size (KB) = 878656 -Test 049 rap_2threads PASS +Test 052 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_restart -Checking test 050 rap_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_restart +Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1967,15 +2120,15 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 216.662842 -0:The maximum resident set size (KB) = 565448 +0:The total amount of wall time = 214.475399 +0:The maximum resident set size (KB) = 565360 -Test 050 rap_restart PASS +Test 053 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_sfcdiff -Checking test 051 rap_sfcdiff results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_sfcdiff +Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2021,15 +2174,15 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 416.605805 -0:The maximum resident set size (KB) = 811668 +0:The total amount of wall time = 423.904091 +0:The maximum resident set size (KB) = 811924 -Test 051 rap_sfcdiff PASS +Test 054 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_sfcdiff_restart +Checking test 055 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2067,15 +2220,15 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 210.815293 -0:The maximum resident set size (KB) = 565120 +0:The total amount of wall time = 214.141019 +0:The maximum resident set size (KB) = 565380 -Test 052 rap_sfcdiff_restart PASS +Test 055 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hrrr_control -Checking test 053 hrrr_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hrrr_control +Checking test 056 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2121,15 +2274,15 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 409.530089 -0:The maximum resident set size (KB) = 810172 +0:The total amount of wall time = 407.968562 +0:The maximum resident set size (KB) = 810548 -Test 053 hrrr_control PASS +Test 056 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rrfs_v1beta -Checking test 054 rrfs_v1beta results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rrfs_v1beta +Checking test 057 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2175,15 +2328,15 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 418.730865 -0:The maximum resident set size (KB) = 809120 +0:The total amount of wall time = 409.681559 +0:The maximum resident set size (KB) = 809216 -Test 054 rrfs_v1beta PASS +Test 057 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rrfs_v1nssl -Checking test 055 rrfs_v1nssl results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rrfs_v1nssl +Checking test 058 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2197,15 +2350,15 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 533.223111 -0:The maximum resident set size (KB) = 498912 +0:The total amount of wall time = 531.509964 +0:The maximum resident set size (KB) = 499260 -Test 055 rrfs_v1nssl PASS +Test 058 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rrfs_v1nssl_nohailnoccn -Checking test 056 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rrfs_v1nssl_nohailnoccn +Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2219,15 +2372,15 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 507.341196 -0:The maximum resident set size (KB) = 492344 +0:The total amount of wall time = 509.228150 +0:The maximum resident set size (KB) = 492340 -Test 056 rrfs_v1nssl_nohailnoccn PASS +Test 059 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rrfs_conus13km_hrrr_warm -Checking test 057 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rrfs_conus13km_hrrr_warm +Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2235,15 +2388,15 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 190.850910 -0:The maximum resident set size (KB) = 642176 +0:The total amount of wall time = 191.608691 +0:The maximum resident set size (KB) = 642444 -Test 057 rrfs_conus13km_hrrr_warm PASS +Test 060 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rrfs_conus13km_radar_tten_warm -Checking test 058 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rrfs_conus13km_radar_tten_warm +Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2251,15 +2404,15 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 190.590564 -0:The maximum resident set size (KB) = 644276 +0:The total amount of wall time = 187.839926 +0:The maximum resident set size (KB) = 644236 -Test 058 rrfs_conus13km_radar_tten_warm PASS +Test 061 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_rrtmgp -Checking test 059 control_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_rrtmgp +Checking test 062 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2269,15 +2422,15 @@ Checking test 059 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 270.177071 -0:The maximum resident set size (KB) = 580000 +0:The total amount of wall time = 267.385005 +0:The maximum resident set size (KB) = 598592 -Test 059 control_rrtmgp PASS +Test 062 control_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_rrtmgp_c192 -Checking test 060 control_rrtmgp_c192 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_rrtmgp_c192 +Checking test 063 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2287,15 +2440,15 @@ Checking test 060 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 718.656509 -0:The maximum resident set size (KB) = 781860 +0:The total amount of wall time = 713.214594 +0:The maximum resident set size (KB) = 797356 -Test 060 control_rrtmgp_c192 PASS +Test 063 control_rrtmgp_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_csawmg -Checking test 061 control_csawmg results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_csawmg +Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2305,15 +2458,15 @@ Checking test 061 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 413.789351 -0:The maximum resident set size (KB) = 523788 +0:The total amount of wall time = 412.624662 +0:The maximum resident set size (KB) = 523608 -Test 061 control_csawmg PASS +Test 064 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_csawmgt -Checking test 062 control_csawmgt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_csawmgt +Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2323,15 +2476,15 @@ Checking test 062 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 409.647579 -0:The maximum resident set size (KB) = 522060 +0:The total amount of wall time = 408.111053 +0:The maximum resident set size (KB) = 522468 -Test 062 control_csawmgt PASS +Test 065 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_flake -Checking test 063 control_flake results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_flake +Checking test 066 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2341,15 +2494,15 @@ Checking test 063 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 271.282638 -0:The maximum resident set size (KB) = 519572 +0:The total amount of wall time = 271.215398 +0:The maximum resident set size (KB) = 518932 -Test 063 control_flake PASS +Test 066 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_ras -Checking test 064 control_ras results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_ras +Checking test 067 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2359,15 +2512,15 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 213.116116 -0:The maximum resident set size (KB) = 480544 +0:The total amount of wall time = 212.749694 +0:The maximum resident set size (KB) = 480196 -Test 064 control_ras PASS +Test 067 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_thompson -Checking test 065 control_thompson results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_thompson +Checking test 068 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2377,15 +2530,15 @@ Checking test 065 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 270.052686 -0:The maximum resident set size (KB) = 832012 +0:The total amount of wall time = 269.286935 +0:The maximum resident set size (KB) = 832020 -Test 065 control_thompson PASS +Test 068 control_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_thompson_no_aero -Checking test 066 control_thompson_no_aero results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_thompson_no_aero +Checking test 069 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2395,55 +2548,55 @@ Checking test 066 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 255.569384 -0:The maximum resident set size (KB) = 826016 +0:The total amount of wall time = 256.743797 +0:The maximum resident set size (KB) = 825876 -Test 066 control_thompson_no_aero PASS +Test 069 control_thompson_no_aero PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_repro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_wam_repro -Checking test 067 control_wam results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_repro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_wam_repro +Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 141.998510 -0:The maximum resident set size (KB) = 204536 +0:The total amount of wall time = 141.309003 +0:The maximum resident set size (KB) = 204488 -Test 067 control_wam PASS +Test 070 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_debug -Checking test 068 control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_debug +Checking test 071 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 = 161.862833 -0:The maximum resident set size (KB) = 613792 +0:The total amount of wall time = 158.043819 +0:The maximum resident set size (KB) = 613480 -Test 068 control_debug PASS +Test 071 control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_2threads_debug -Checking test 069 control_2threads_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_2threads_debug +Checking test 072 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 279.788358 -0:The maximum resident set size (KB) = 666592 +0:The total amount of wall time = 276.212078 +0:The maximum resident set size (KB) = 666640 -Test 069 control_2threads_debug PASS +Test 072 control_2threads_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_CubedSphereGrid_debug -Checking test 070 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_CubedSphereGrid_debug +Checking test 073 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2469,429 +2622,429 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 179.006223 -0:The maximum resident set size (KB) = 613380 +0:The total amount of wall time = 171.880256 +0:The maximum resident set size (KB) = 613416 -Test 070 control_CubedSphereGrid_debug PASS +Test 073 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_wrtGauss_netcdf_parallel_debug -Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_wrtGauss_netcdf_parallel_debug +Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 163.709802 -0:The maximum resident set size (KB) = 613744 +0:The total amount of wall time = 162.920349 +0:The maximum resident set size (KB) = 613760 -Test 071 control_wrtGauss_netcdf_parallel_debug PASS +Test 074 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_stochy_debug -Checking test 072 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_stochy_debug +Checking test 075 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 = 186.408382 -0:The maximum resident set size (KB) = 617676 +0:The total amount of wall time = 180.285604 +0:The maximum resident set size (KB) = 617684 -Test 072 control_stochy_debug PASS +Test 075 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_lndp_debug -Checking test 073 control_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_lndp_debug +Checking test 076 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 = 168.175775 -0:The maximum resident set size (KB) = 618412 +0:The total amount of wall time = 162.291582 +0:The maximum resident set size (KB) = 618444 -Test 073 control_lndp_debug PASS +Test 076 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_rrtmgp_debug -Checking test 074 control_rrtmgp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_rrtmgp_debug +Checking test 077 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 179.486717 -0:The maximum resident set size (KB) = 724280 +0:The total amount of wall time = 175.095353 +0:The maximum resident set size (KB) = 740572 -Test 074 control_rrtmgp_debug PASS +Test 077 control_rrtmgp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_csawmg_debug -Checking test 075 control_csawmg_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_csawmg_debug +Checking test 078 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 = 256.141610 -0:The maximum resident set size (KB) = 662992 +0:The total amount of wall time = 255.860699 +0:The maximum resident set size (KB) = 662624 -Test 075 control_csawmg_debug PASS +Test 078 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_csawmgt_debug -Checking test 076 control_csawmgt_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_csawmgt_debug +Checking test 079 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 = 253.770654 -0:The maximum resident set size (KB) = 662576 +0:The total amount of wall time = 250.192048 +0:The maximum resident set size (KB) = 663064 -Test 076 control_csawmgt_debug PASS +Test 079 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_ras_debug -Checking test 077 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_ras_debug +Checking test 080 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 168.861495 -0:The maximum resident set size (KB) = 626068 +0:The total amount of wall time = 164.198458 +0:The maximum resident set size (KB) = 626092 -Test 077 control_ras_debug PASS +Test 080 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_diag_debug -Checking test 078 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_diag_debug +Checking test 081 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 = 173.584392 -0:The maximum resident set size (KB) = 669520 +0:The total amount of wall time = 166.036412 +0:The maximum resident set size (KB) = 669640 -Test 078 control_diag_debug PASS +Test 081 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_debug_p8 -Checking test 079 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_debug_p8 +Checking test 082 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 = 176.026111 -0:The maximum resident set size (KB) = 1008872 +0:The total amount of wall time = 174.185691 +0:The maximum resident set size (KB) = 1008908 -Test 079 control_debug_p8 PASS +Test 082 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_thompson_debug -Checking test 080 control_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_thompson_debug +Checking test 083 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 187.150791 -0:The maximum resident set size (KB) = 973084 +0:The total amount of wall time = 185.118412 +0:The maximum resident set size (KB) = 973164 -Test 080 control_thompson_debug PASS +Test 083 control_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_thompson_no_aero_debug -Checking test 081 control_thompson_no_aero_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_thompson_no_aero_debug +Checking test 084 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 180.421332 -0:The maximum resident set size (KB) = 968616 +0:The total amount of wall time = 178.540700 +0:The maximum resident set size (KB) = 968700 -Test 081 control_thompson_no_aero_debug PASS +Test 084 control_thompson_no_aero_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug_extdiag -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_thompson_extdiag_debug -Checking test 082 control_thompson_extdiag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug_extdiag +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_thompson_extdiag_debug +Checking test 085 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 200.305891 -0:The maximum resident set size (KB) = 1002056 +0:The total amount of wall time = 194.450741 +0:The maximum resident set size (KB) = 1001956 -Test 082 control_thompson_extdiag_debug PASS +Test 085 control_thompson_extdiag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_thompson_progcld_thompson_debug -Checking test 083 control_thompson_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_thompson_progcld_thompson_debug +Checking test 086 control_thompson_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 = 185.654897 -0:The maximum resident set size (KB) = 973144 +0:The total amount of wall time = 185.354172 +0:The maximum resident set size (KB) = 973128 -Test 083 control_thompson_progcld_thompson_debug PASS +Test 086 control_thompson_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_debug -Checking test 084 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/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 = 261.057365 -0:The maximum resident set size (KB) = 593452 +0:The total amount of wall time = 259.525947 +0:The maximum resident set size (KB) = 593624 -Test 084 regional_debug PASS +Test 087 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_control_debug -Checking test 085 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/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 = 292.096080 -0:The maximum resident set size (KB) = 980268 +0:The total amount of wall time = 286.597425 +0:The maximum resident set size (KB) = 980012 -Test 085 rap_control_debug PASS +Test 088 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_unified_drag_suite_debug -Checking test 086 rap_unified_drag_suite_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_unified_drag_suite_debug +Checking test 089 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 = 290.551282 -0:The maximum resident set size (KB) = 979952 +0:The total amount of wall time = 285.365256 +0:The maximum resident set size (KB) = 979628 -Test 086 rap_unified_drag_suite_debug PASS +Test 089 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_diag_debug -Checking test 087 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_diag_debug +Checking test 090 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 = 302.430479 -0:The maximum resident set size (KB) = 1062340 +0:The total amount of wall time = 299.590181 +0:The maximum resident set size (KB) = 1062772 -Test 087 rap_diag_debug PASS +Test 090 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_cires_ugwp_debug -Checking test 088 rap_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_cires_ugwp_debug +Checking test 091 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 = 295.539146 -0:The maximum resident set size (KB) = 980444 +0:The total amount of wall time = 290.920686 +0:The maximum resident set size (KB) = 981192 -Test 088 rap_cires_ugwp_debug PASS +Test 091 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_unified_ugwp_debug -Checking test 089 rap_unified_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_unified_ugwp_debug +Checking test 092 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 = 296.129830 -0:The maximum resident set size (KB) = 979936 +0:The total amount of wall time = 291.203232 +0:The maximum resident set size (KB) = 980020 -Test 089 rap_unified_ugwp_debug PASS +Test 092 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_lndp_debug -Checking test 090 rap_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_lndp_debug +Checking test 093 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 = 291.062564 -0:The maximum resident set size (KB) = 980452 +0:The total amount of wall time = 288.015621 +0:The maximum resident set size (KB) = 980748 -Test 090 rap_lndp_debug PASS +Test 093 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_flake_debug -Checking test 091 rap_flake_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_flake_debug +Checking test 094 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 = 290.589464 -0:The maximum resident set size (KB) = 980276 +0:The total amount of wall time = 286.252142 +0:The maximum resident set size (KB) = 980024 -Test 091 rap_flake_debug PASS +Test 094 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_progcld_thompson_debug -Checking test 092 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_progcld_thompson_debug +Checking test 095 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 = 292.523831 -0:The maximum resident set size (KB) = 979292 +0:The total amount of wall time = 286.306778 +0:The maximum resident set size (KB) = 979812 -Test 092 rap_progcld_thompson_debug PASS +Test 095 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_noah_debug -Checking test 093 rap_noah_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_noah_debug +Checking test 096 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 = 284.087099 -0:The maximum resident set size (KB) = 981124 +0:The total amount of wall time = 281.584199 +0:The maximum resident set size (KB) = 981340 -Test 093 rap_noah_debug PASS +Test 096 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_rrtmgp_debug -Checking test 094 rap_rrtmgp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_rrtmgp_debug +Checking test 097 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 486.322640 -0:The maximum resident set size (KB) = 1093844 +0:The total amount of wall time = 483.181712 +0:The maximum resident set size (KB) = 1109148 -Test 094 rap_rrtmgp_debug PASS +Test 097 rap_rrtmgp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_sfcdiff_debug -Checking test 095 rap_sfcdiff_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/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 = 290.441861 -0:The maximum resident set size (KB) = 979660 +0:The total amount of wall time = 286.591961 +0:The maximum resident set size (KB) = 979564 -Test 095 rap_sfcdiff_debug PASS +Test 098 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/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 = 473.496196 -0:The maximum resident set size (KB) = 980140 +0:The total amount of wall time = 471.436705 +0:The maximum resident set size (KB) = 980088 -Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rrfs_v1beta_debug -Checking test 097 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/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 = 284.693902 -0:The maximum resident set size (KB) = 977040 +0:The total amount of wall time = 283.619890 +0:The maximum resident set size (KB) = 976976 -Test 097 rrfs_v1beta_debug PASS +Test 100 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_wam_debug -Checking test 098 control_wam_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/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 = 303.515212 -0:The maximum resident set size (KB) = 235384 +0:The total amount of wall time = 296.555997 +0:The maximum resident set size (KB) = 235560 -Test 098 control_wam_debug PASS +Test 101 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_atm -Checking test 099 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_atm +Checking test 102 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK -0:The total amount of wall time = 512.510177 -0:The maximum resident set size (KB) = 676496 +0:The total amount of wall time = 515.826520 +0:The maximum resident set size (KB) = 673044 -Test 099 hafs_regional_atm PASS +Test 102 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_atm_thompson_gfdlsf -Checking test 100 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_atm_thompson_gfdlsf +Checking test 103 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 594.352151 -0:The maximum resident set size (KB) = 1031692 +0:The total amount of wall time = 600.431543 +0:The maximum resident set size (KB) = 1032108 -Test 100 hafs_regional_atm_thompson_gfdlsf PASS +Test 103 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_atm_ocn -Checking test 101 hafs_regional_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_atm_ocn +Checking test 104 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2899,29 +3052,29 @@ Checking test 101 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 = 385.841641 -0:The maximum resident set size (KB) = 690356 +0:The total amount of wall time = 389.387358 +0:The maximum resident set size (KB) = 690080 -Test 101 hafs_regional_atm_ocn PASS +Test 104 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_atm_wav -Checking test 102 hafs_regional_atm_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_atm_wav +Checking test 105 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 1000.747661 -0:The maximum resident set size (KB) = 690060 +0:The total amount of wall time = 1006.624727 +0:The maximum resident set size (KB) = 690648 -Test 102 hafs_regional_atm_wav PASS +Test 105 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_atm_ocn_wav -Checking test 103 hafs_regional_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_atm_ocn_wav +Checking test 106 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2929,59 +3082,59 @@ Checking test 103 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 1092.979265 -0:The maximum resident set size (KB) = 690964 +0:The total amount of wall time = 1068.650353 +0:The maximum resident set size (KB) = 690820 -Test 103 hafs_regional_atm_ocn_wav PASS +Test 106 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_1nest_atm -Checking test 104 hafs_regional_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_1nest_atm +Checking test 107 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1040.260527 -0:The maximum resident set size (KB) = 273284 +0:The total amount of wall time = 1042.250994 +0:The maximum resident set size (KB) = 273516 -Test 104 hafs_regional_1nest_atm PASS +Test 107 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_telescopic_2nests_atm -Checking test 105 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_telescopic_2nests_atm +Checking test 108 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1086.738970 -0:The maximum resident set size (KB) = 280484 +0:The total amount of wall time = 1082.034022 +0:The maximum resident set size (KB) = 279800 -Test 105 hafs_regional_telescopic_2nests_atm PASS +Test 108 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_global_1nest_atm -Checking test 106 hafs_global_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_global_1nest_atm +Checking test 109 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 677.207367 -0:The maximum resident set size (KB) = 175136 +0:The total amount of wall time = 678.257418 +0:The maximum resident set size (KB) = 175032 -Test 106 hafs_global_1nest_atm PASS +Test 109 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_global_multiple_4nests_atm -Checking test 107 hafs_global_multiple_4nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_global_multiple_4nests_atm +Checking test 110 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK @@ -2993,149 +3146,149 @@ Checking test 107 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1255.935936 -0:The maximum resident set size (KB) = 238136 +0:The total amount of wall time = 1254.553710 +0:The maximum resident set size (KB) = 237872 -Test 107 hafs_global_multiple_4nests_atm PASS +Test 110 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_docn -Checking test 108 hafs_regional_docn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_docn +Checking test 111 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 368.026077 -0:The maximum resident set size (KB) = 688664 +0:The total amount of wall time = 367.474326 +0:The maximum resident set size (KB) = 689292 -Test 108 hafs_regional_docn PASS +Test 111 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_docn_oisst -Checking test 109 hafs_regional_docn_oisst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_docn_oisst +Checking test 112 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 367.073747 -0:The maximum resident set size (KB) = 688616 +0:The total amount of wall time = 366.828985 +0:The maximum resident set size (KB) = 689116 -Test 109 hafs_regional_docn_oisst PASS +Test 112 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_datm_cdeps -Checking test 110 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_datm_cdeps +Checking test 113 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 = 1293.860850 -0:The maximum resident set size (KB) = 871984 +0:The total amount of wall time = 1179.557956 +0:The maximum resident set size (KB) = 871612 -Test 110 hafs_regional_datm_cdeps PASS +Test 113 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_control_cfsr -Checking test 111 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_control_cfsr +Checking test 114 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.182448 -0:The maximum resident set size (KB) = 695240 +0:The total amount of wall time = 165.100067 +0:The maximum resident set size (KB) = 706316 -Test 111 datm_cdeps_control_cfsr PASS +Test 114 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_restart_cfsr -Checking test 112 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_restart_cfsr +Checking test 115 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.972824 -0:The maximum resident set size (KB) = 694416 +0:The total amount of wall time = 99.669617 +0:The maximum resident set size (KB) = 694800 -Test 112 datm_cdeps_restart_cfsr PASS +Test 115 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_control_gefs -Checking test 113 datm_cdeps_control_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_control_gefs +Checking test 116 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 160.092939 -0:The maximum resident set size (KB) = 592672 +0:The total amount of wall time = 160.051761 +0:The maximum resident set size (KB) = 592368 -Test 113 datm_cdeps_control_gefs PASS +Test 116 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_iau_gefs -Checking test 114 datm_cdeps_iau_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_iau_gefs +Checking test 117 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.738280 -0:The maximum resident set size (KB) = 593192 +0:The total amount of wall time = 162.560172 +0:The maximum resident set size (KB) = 592280 -Test 114 datm_cdeps_iau_gefs PASS +Test 117 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_stochy_gefs -Checking test 115 datm_cdeps_stochy_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_stochy_gefs +Checking test 118 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.700069 -0:The maximum resident set size (KB) = 593076 +0:The total amount of wall time = 162.166625 +0:The maximum resident set size (KB) = 592116 -Test 115 datm_cdeps_stochy_gefs PASS +Test 118 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_bulk_cfsr -Checking test 116 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_bulk_cfsr +Checking test 119 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.006725 -0:The maximum resident set size (KB) = 694952 +0:The total amount of wall time = 166.972125 +0:The maximum resident set size (KB) = 694728 -Test 116 datm_cdeps_bulk_cfsr PASS +Test 119 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_bulk_gefs -Checking test 117 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_bulk_gefs +Checking test 120 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.564080 -0:The maximum resident set size (KB) = 592920 +0:The total amount of wall time = 155.108360 +0:The maximum resident set size (KB) = 592492 -Test 117 datm_cdeps_bulk_gefs PASS +Test 120 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_mx025_cfsr -Checking test 118 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_mx025_cfsr +Checking test 121 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3143,15 +3296,15 @@ Checking test 118 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 = 334.307564 -0:The maximum resident set size (KB) = 524824 +0:The total amount of wall time = 353.490955 +0:The maximum resident set size (KB) = 524408 -Test 118 datm_cdeps_mx025_cfsr PASS +Test 121 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_mx025_gefs -Checking test 119 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_mx025_gefs +Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3159,65 +3312,65 @@ Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 334.063672 -0:The maximum resident set size (KB) = 495620 +0:The total amount of wall time = 351.746395 +0:The maximum resident set size (KB) = 494916 -Test 119 datm_cdeps_mx025_gefs PASS +Test 122 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_multiple_files_cfsr -Checking test 120 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_multiple_files_cfsr +Checking test 123 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.232179 -0:The maximum resident set size (KB) = 695124 +0:The total amount of wall time = 165.313501 +0:The maximum resident set size (KB) = 695240 -Test 120 datm_cdeps_multiple_files_cfsr PASS +Test 123 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_3072x1536_cfsr -Checking test 121 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_3072x1536_cfsr +Checking test 124 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 266.383805 -0:The maximum resident set size (KB) = 1846324 +0:The total amount of wall time = 236.223497 +0:The maximum resident set size (KB) = 1844884 -Test 121 datm_cdeps_3072x1536_cfsr PASS +Test 124 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_gfs -Checking test 122 datm_cdeps_gfs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_gfs +Checking test 125 datm_cdeps_gfs results .... Comparing RESTART/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 = 252.018545 -0:The maximum resident set size (KB) = 1814644 +0:The total amount of wall time = 236.719321 +0:The maximum resident set size (KB) = 1846180 -Test 122 datm_cdeps_gfs PASS +Test 125 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_debug_cfsr -Checking test 123 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_debug_cfsr +Checking test 126 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 455.319117 -0:The maximum resident set size (KB) = 714472 +0:The total amount of wall time = 455.211312 +0:The maximum resident set size (KB) = 702936 -Test 123 datm_cdeps_debug_cfsr PASS +Test 126 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_atmwav -Checking test 124 control_atmwav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_atmwav +Checking test 127 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3260,12 +3413,12 @@ Checking test 124 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 138.741221 -0:The maximum resident set size (KB) = 468132 +0:The total amount of wall time = 140.278265 +0:The maximum resident set size (KB) = 468292 -Test 124 control_atmwav PASS +Test 127 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 4 10:38:45 MDT 2022 -Elapsed time: 01h:07m:18s. Have a nice day! +Tue Apr 5 21:59:27 MDT 2022 +Elapsed time: 01h:45m:08s. Have a nice day! From e09bcc8093f5bcf9ca62605096912959dbe0193c Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 6 Apr 2022 14:48:07 +0000 Subject: [PATCH 37/57] Cleanup p8 tests. --- FV3 | 2 +- tests/rt.conf | 8 +- tests/tests/control_p8 | 5 + tests/tests/control_p8_rrtmgp | 166 ---------------------------- tests/tests/cpld_bmark_p7_rrtmgp | 171 ----------------------------- tests/tests/cpld_bmark_p8 | 6 + tests/tests/cpld_bmark_p8_rrtmgp | 161 --------------------------- tests/tests/cpld_control_p7_rrtmgp | 90 --------------- tests/tests/cpld_control_p8 | 6 + tests/tests/cpld_control_p8_rrtmgp | 92 ---------------- 10 files changed, 20 insertions(+), 687 deletions(-) delete mode 100644 tests/tests/control_p8_rrtmgp delete mode 100644 tests/tests/cpld_bmark_p7_rrtmgp delete mode 100644 tests/tests/cpld_bmark_p8_rrtmgp delete mode 100644 tests/tests/cpld_control_p7_rrtmgp delete mode 100644 tests/tests/cpld_control_p8_rrtmgp diff --git a/FV3 b/FV3 index 15871fdec5..7cc75bd48b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 15871fdec5ee504a9cd1956bb1fe0a81423d7772 +Subproject commit 7cc75bd48b05816943cd364b46a1101327d1e0a1 diff --git a/tests/rt.conf b/tests/rt.conf index f87e3523ed..3f579ee12d 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -2,16 +2,14 @@ # S2S tests # ################################################################################################################################################################################### -COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp | - wcoss_cray | fv3 | +COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 | - wcoss_cray | fv3 | RUN | cpld_control_p8 | - wcoss_cray | fv3 | -RUN | cpld_control_p8_rrtmgp | - wcoss_cray | fv3 | RUN | cpld_2threads_p8 | - wcoss_cray | | RUN | cpld_decomp_p8 | - wcoss_cray jet.intel | | RUN | cpld_mpi_p8 | - wcoss_cray | | RUN | cpld_bmark_p7 | - wcoss_cray | fv3 | RUN | cpld_bmark_p8 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_bmark_p8_rrtmgp | - wcoss_cray jet.intel | fv3 | # Waves off for restart and debug tests RUN | cpld_control_c96_p8 | - wcoss_cray | fv3 | @@ -31,7 +29,7 @@ RUN | cpld_debug_p8 # PROD tests # ################################################################################################################################################################################### -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON | | fv3 | RUN | control | | fv3 | RUN | control_decomp | | | RUN | control_2dwrtdecomp | | | @@ -56,8 +54,6 @@ RUN | control_p8 RUN | control_restart_p8 | | | control_p8 RUN | control_decomp_p8 | | | RUN | control_2threads_p8 | - wcoss_cray | | -RUN | control_p7_rrtmgp | | fv3 | -RUN | control_p8_rrtmgp | | fv3 | RUN | regional_control | | fv3 | RUN | regional_restart | | | regional_control diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index 07598e5537..9e62286f79 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -159,3 +159,8 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_p8_rrtmgp b/tests/tests/control_p8_rrtmgp deleted file mode 100644 index 4bd77a2424..0000000000 --- a/tests/tests/control_p8_rrtmgp +++ /dev/null @@ -1,166 +0,0 @@ -############################################################################### -# -# Global control test GFSv16 atmosphere only at C96L127, P8 configuration -# -############################################################################### - -export TEST_DESCR="Compare global control results with previous trunk version" - -export CNTL_DIR=control_p8_rrtmgp - -export LIST_FILES="sfcf000.nc \ - sfcf021.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf021.nc \ - atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF21 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF21 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="12 -1" -export OUTPUT_GRID='gaussian_grid' -export WRITE_DOPOST=.true. -export OUTPUT_FH='0 21 24' - -# P7 default -export IALB=2 -export IEMS=2 -export LSM=2 -export IOPT_DVEG=4 -export IOPT_CRS=2 -export IOPT_RAD=3 -export IOPT_ALB=1 -export IOPT_STC=3 -# P8 -export IOPT_SFC=3 - -# FV3 P7 settings -export D2_BG_K1=0.20 -export D2_BG_K2=0.04 -export PSM_BC=1 -# P8 -export DDDMP=0.1 - -# P7 Merra2 Aerosols & NSST -export USE_MERRA2=.true. -export IAER=1011 -export NSTF_NAME=2,1,0,0,0 - -export LHEATSTRG=.true. -export LSEASPRAY=.true. - -# P7 UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - -# P7 CA -export DO_CA=.true. -export CA_SGS=.true. -export CA_GLOBAL=.false. -export NCA=1 -export NCELLS=5 -export NLIVES=12 -export NTHRESH=18 -export NSEED=1 -export NFRACSEED=0.5 -export CA_TRIGGER=.true. -export NSPINUP=1 -export ISEED_CA=12345 - -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - -export IMP_PHYSICS=8 -export LGFDLMPRAD=.false. -export DO_SAT_ADJ=.false. -export DNATS=2 -export DZ_MIN=6 - -#required for NML.IN sharing -export MIN_SEAICE=0.15 -export FRAC_GRID=.true. -export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) -export USE_CICE_ALB=.false. - -export WRITE_NSFLIP=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8_rrtmgp -export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_gfsv16_merra2 -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN - -# RRTMGP -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/cpld_bmark_p7_rrtmgp b/tests/tests/cpld_bmark_p7_rrtmgp deleted file mode 100644 index 785826d6bd..0000000000 --- a/tests/tests/cpld_bmark_p7_rrtmgp +++ /dev/null @@ -1,171 +0,0 @@ -# -# cpld_bmark_p7_rrtmgp test -# -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3-RRTMGP system - C384L127 MX025 - Benchmark P7 test" - -export CNTL_DIR="cpld_bmark_p7_rrtmgp" - -export LIST_FILES="sfcf006.nc \ - atmf006.nc \ - 20130401.060000.out_grd.gwes_30m \ - 20130401.060000.out_pnt.points \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-01-21600.nc \ - RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc" - -export_fv3 -export_cpl - -export SYEAR=2013 -export SMONTH=04 -export SDAY=01 -export SHOUR=00 -export SECS=`expr $SHOUR \* 3600` -export BMIC=.true. - -export DAYS=0.25 -export FHMAX=6 -export RESTART_N=`expr ${FHMAX} - ${FHROT}` -export RESTART_INTERVAL="${RESTART_N} -1" - -export TASKS=$TASKS_cpl_bmrk -export TPN=$TPN_cpl_bmrk -export INPES=$INPES_cpl_bmrk -export JNPES=$JNPES_cpl_bmrk -export THRD=$THRD_cpl_bmrk -export WRTTASK_PER_GROUP=$WPG_cpl_bmrk - -export med_petlist_bounds=$MPB_cpl_bmrk -export atm_petlist_bounds=$APB_cpl_bmrk -export ocn_petlist_bounds=$OPB_cpl_bmrk -export ice_petlist_bounds=$IPB_cpl_bmrk -export wav_petlist_bounds=$WPB_cpl_bmrk - -# atm/ocn/ice resolution -export ATMRES=C384 -export NPX=385 -export NPY=385 -export IMO=1536 -export JMO=768 -export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` - -export OCNRES=025 -export ICERES=0.25 -export NX_GLB=1440 -export NY_GLB=1080 -export NPROC_ICE=$NPROC_ICE_cpl_bmrk -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -# set component and coupling timesteps -export DT_ATMOS=300 -export DT_CICE=${DT_ATMOS} -export DT_DYNAM_MOM6=900 -export DT_THERM_MOM6=1800 - -# nems.configure -export NEMS_CONFIGURE=nems.configure.cpld_wave.IN -export coupling_interval_slow_sec=${DT_THERM_MOM6} -export coupling_interval_fast_sec=${DT_ATMOS} - -# resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc - -export FNALBC="'C384.snowfree_albedo.tileX.nc'" -export FNALBC2="'C384.facsf.tileX.nc'" -export FNTG3C="'C384.substrate_temperature.tileX.nc'" -export FNVEGC="'C384.vegetation_greenness.tileX.nc'" -export FNVETC="'C384.vegetation_type.tileX.nc'" -export FNSOTC="'C384.soil_type.tileX.nc'" -export FNVMNC="'C384.vegetation_greenness.tileX.nc'" -export FNVMXC="'C384.vegetation_greenness.tileX.nc'" -export FNSLPC="'C384.slope_type.tileX.nc'" -export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" - -export MOM6_RIVER_RUNOFF=True -export MOM6_RESTART_SETTING=r - -#P7 -export USE_CICE_ALB=.false. -export MIN_SEAICE=1.0e-11 -export IOPT_SFC=1 -export DNATS=1 -export IMP_PHYSICS=11 -export FIELD_TABLE=field_table_gfsv16 -export LGFDLMPRAD=.true. -export KNOB_UGWP_VERSION=1 -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. -export FSICL=99999 -export FSICS=99999 -export DO_SAT_ADJ=.true. -export CDMBWD='1.0,2.2,1.0,1.0' -export DZ_MIN=2 -export WRITE_NSFLIP=.false. -export FV3BMIC='gfs_p7' - -export WW3GRIDLINE="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" -export WW3RSTDTHR=${FHMAX} -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END - -export DIAG_TABLE=diag_table_template - -export FV3_RUN=cpld_control_run.IN -export INPUT_NML=cpld_control_p7.nml.IN - -# RRTMGP -export CCPP_SUITE=FV3_GFS_v16_coupled_p7_rrtmgp -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index c877d006aa..0e3ade94e3 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -152,3 +152,9 @@ export RST_2_END=$RUN_END export FV3_RUN=cpld_control_run.IN export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART + +# RRTMGP +export CCPP_SUITE=FV3_GFS_v17_coupled_p8 +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/cpld_bmark_p8_rrtmgp b/tests/tests/cpld_bmark_p8_rrtmgp deleted file mode 100644 index 86d947001a..0000000000 --- a/tests/tests/cpld_bmark_p8_rrtmgp +++ /dev/null @@ -1,161 +0,0 @@ -# -# cpld_bmark_p8_rrtmgp test -# -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-GOCART-WW3-RRTMGP system - C384L127 MX025 - Benchmark P8 test" - -export CNTL_DIR="cpld_bmark_p8_rrtmgp" - -export LIST_FILES="sfcf006.nc \ - atmf006.nc \ - gocart.inst_aod.20130401_0600z.nc4 \ - 20130401.060000.out_grd.gwes_30m \ - 20130401.060000.out_pnt.points \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-01-21600.nc \ - RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc" - -export_fv3 -export_cpl - -export SYEAR=2013 -export SMONTH=04 -export SDAY=01 -export SHOUR=00 -export SECS=`expr $SHOUR \* 3600` -export BMIC=.true. - -export DAYS=0.25 -export FHMAX=6 -export RESTART_N=`expr ${FHMAX} - ${FHROT}` -export RESTART_INTERVAL="${RESTART_N} -1" - -export WLCLK=45 - -export DOMAINS_STACK_SIZE=16000000 - -export TASKS=$TASKS_cpl_bmrk_aero -export TPN=$TPN_cpl_bmrk_aero -export INPES=$INPES_cpl_bmrk_aero -export JNPES=$JNPES_cpl_bmrk_aero -export THRD=$THRD_cpl_bmrk_aero -export WRTTASK_PER_GROUP=$WPG_cpl_bmrk_aero - -export med_petlist_bounds=$MPB_cpl_bmrk_aero -export atm_petlist_bounds=$APB_cpl_bmrk_aero -export chm_petlist_bounds=$CHM_cpl_bmrk_aero -export ocn_petlist_bounds=$OPB_cpl_bmrk_aero -export ice_petlist_bounds=$IPB_cpl_bmrk_aero -export wav_petlist_bounds=$WPB_cpl_bmrk_aero - -# atm/ocn/ice resolution -export ATMRES=C384 -export NPX=385 -export NPY=385 -export IMO=1536 -export JMO=768 -export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` - -export OCNRES=025 -export ICERES=0.25 -export NX_GLB=1440 -export NY_GLB=1080 -export NPROC_ICE=$NPROC_ICE_cpl_bmrk_aero -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -# set component and coupling timesteps -export DT_ATMOS=300 -export DT_CICE=${DT_ATMOS} -export DT_DYNAM_MOM6=900 -export DT_THERM_MOM6=1800 - -export CPLCHM=.true. - -# nems.configure -export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN -export coupling_interval_slow_sec=${DT_THERM_MOM6} -export coupling_interval_fast_sec=${DT_ATMOS} - -# resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc - -export FNALBC="'C384.snowfree_albedo.tileX.nc'" -export FNALBC2="'C384.facsf.tileX.nc'" -export FNTG3C="'C384.substrate_temperature.tileX.nc'" -export FNVEGC="'C384.vegetation_greenness.tileX.nc'" -export FNVETC="'C384.vegetation_type.tileX.nc'" -export FNSOTC="'C384.soil_type.tileX.nc'" -export FNVMNC="'C384.vegetation_greenness.tileX.nc'" -export FNVMXC="'C384.vegetation_greenness.tileX.nc'" -export FNSLPC="'C384.slope_type.tileX.nc'" -export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" - -export CDMBWD=${CDMBWD_c384} -export DT_INNER=${DT_INNER_c384} - -export MOM6_RIVER_RUNOFF=True -export MOM6_RESTART_SETTING=r - -export WW3GRIDLINE="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" -export WW3RSTDTHR=${FHMAX} -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END - -export FV3_RUN=cpld_control_run.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - -# RRTMGP -export CCPP_SUITE=FV3_GFS_v17_coupled_p8_rrtmgp -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. -export DOGP_SGS_CNV=.true. \ No newline at end of file diff --git a/tests/tests/cpld_control_p7_rrtmgp b/tests/tests/cpld_control_p7_rrtmgp deleted file mode 100644 index 2835ba56b6..0000000000 --- a/tests/tests/cpld_control_p7_rrtmgp +++ /dev/null @@ -1,90 +0,0 @@ -# -# cpld_control P7 test with RRTMGP -# - -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 + RRTMGP" - -export CNTL_DIR="cpld_control_p7_rrtmgp" - -export LIST_FILES="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/iced.2021-03-23-21600.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ - 20210323.060000.out_grd.glo_1deg \ - 20210323.060000.out_pnt.points \ - 20210323.060000.restart.glo_1deg" - -export_fv3 -export_cpl - -export RESTART_N=12 -export RESTART_INTERVAL="${RESTART_N} -1" - -export eps_imesh=2.5e-1 -#P7 -export USE_CICE_ALB=.false. -export MIN_SEAICE=1.0e-11 -export IOPT_SFC=1 -export DNATS=1 -export FIELD_TABLE=field_table_gfsv16 -export KNOB_UGWP_VERSION=1 -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. -export FSICL=99999 -export FSICS=99999 -export CDMBWD='1.0,2.2,1.0,1.0' - -export DIAG_TABLE=diag_table_template - -export FV3_RUN=cpld_control_run.IN -export INPUT_NML=cpld_control_p7.nml.IN - -# RRTMGP -export CCPP_SUITE=FV3_GFS_v16_coupled_p7_rrtmgp -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index c68ce14016..d55152663e 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -84,3 +84,9 @@ export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN + +# RRTMGP +export CCPP_SUITE=FV3_GFS_v17_coupled_p8 +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. diff --git a/tests/tests/cpld_control_p8_rrtmgp b/tests/tests/cpld_control_p8_rrtmgp deleted file mode 100644 index 9409cd1d22..0000000000 --- a/tests/tests/cpld_control_p8_rrtmgp +++ /dev/null @@ -1,92 +0,0 @@ -# -# cpld_control P8 test -# - -export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3-RRTMGP system - C96MX100" - -export CNTL_DIR="cpld_control_p8_rrtmgp" - -export LIST_FILES="sfcf021.tile1.nc \ - sfcf021.tile2.nc \ - sfcf021.tile3.nc \ - sfcf021.tile4.nc \ - sfcf021.tile5.nc \ - sfcf021.tile6.nc \ - atmf021.tile1.nc \ - atmf021.tile2.nc \ - atmf021.tile3.nc \ - atmf021.tile4.nc \ - atmf021.tile5.nc \ - atmf021.tile6.nc \ - sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/iced.2021-03-23-21600.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ - gocart.inst_aod.20210323_0600z.nc4 \ - 20210323.060000.out_grd.glo_1deg \ - 20210323.060000.out_pnt.points \ - 20210323.060000.restart.glo_1deg" - -export_fv3 -export_cpl - -export RESTART_N=12 -export RESTART_INTERVAL="${RESTART_N} -1" -export OUTPUT_FH='0 21 24' - -export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - -export eps_imesh=2.5e-1 - -export FV3_RUN=cpld_control_run.IN - -# RRTMGP -export CCPP_SUITE=FV3_GFS_v17_coupled_p8_rrtmgp -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. From 965487a7b05725126aae150c49a8b4dceba26720 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 6 Apr 2022 15:36:45 +0000 Subject: [PATCH 38/57] More RT cleanup for p8. --- tests/default_vars.sh | 5 + tests/parm/cpld_control_p7.nml.IN | 394 ------------------------------ tests/rt.conf | 1 - tests/tests/control_p7_rrtmgp | 162 ------------ tests/tests/cpld_bmark_p7 | 166 ------------- tests/tests/cpld_bmark_p8 | 6 - tests/tests/cpld_control_p8 | 6 - 7 files changed, 5 insertions(+), 735 deletions(-) delete mode 100644 tests/parm/cpld_control_p7.nml.IN delete mode 100644 tests/tests/control_p7_rrtmgp delete mode 100644 tests/tests/cpld_bmark_p7 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 7706e12184..d9f98711ff 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1189,6 +1189,11 @@ export LDIAG_UGWP=.false. #P8 export CDMBWD=${CDMBWD_c96} +# P8 RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true + #P8 UGWD export DO_UGWP_V0=.true. export DO_UGWP_V1=.false. diff --git a/tests/parm/cpld_control_p7.nml.IN b/tests/parm/cpld_control_p7.nml.IN deleted file mode 100644 index 8d40a2ed75..0000000000 --- a/tests/parm/cpld_control_p7.nml.IN +++ /dev/null @@ -1,394 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. - max_output_fields = @[MAX_OUTPUT_FIELDS] -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = 3000000 - print_memory_usage = .false. -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - dz_min = @[DZ_MIN] - psm_bc = @[PSM_BC] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 42 - nudge_qv = .true. - nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 - d2_bg_k1 = @[D2_BG_K1] - d2_bg_k2 = @[D2_BG_K2] - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0. - dnats = @[DNATS] - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = @[DDDMP] - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = @[RES_LATLON_DYNAMICS] -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = @[FHZERO] - h2o_phys = .true. - ldiag3d = @[LDIAG3D] - qdiag3d = @[QDIAG3D] - print_diff_pgr = @[PRINT_DIFF_PGR] - fhcyc = @[FHCYC] - use_ufo = .true. - pre_rad = .false. - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = @[IALB] - iems = @[IEMS] - iaer = @[IAER] - icliq_sw = 2 - iovr = 3 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .true. - isatmedmf = 1 - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = @[RANDOM_CLDS] - trans_trac = .true. - cnvcld = @[CNVCLD] - imfshalcnv = @[IMFSHALCNV] - imfdeepcnv = @[IMFDEEPCNV] - ras = @[RAS] - cdmbgwd = @[CDMBWD] - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 - lsm = @[LSM] - iopt_dveg = @[IOPT_DVEG] - iopt_crs = @[IOPT_CRS] - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = @[IOPT_SFC] - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = @[IOPT_RAD] - iopt_alb = @[IOPT_ALB] - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = @[IOPT_STC] - debug = .false. - oz_phys = .false. - oz_phys_2015 = .true. - nstf_name = @[NSTF_NAME] - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = .true. - cplchm = @[CPLCHM] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - cplflx = @[CPLFLX] - cplice = @[CPLICE] - min_seaice = @[MIN_SEAICE] - use_cice_alb = @[USE_CICE_ALB] - frac_grid = @[FRAC_GRID] - effr_in = .true. - ldiag_ugwp = @[LDIAG_UGWP] - do_ugwp = .false. - do_tofd = .false. - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - do_RRTMGP = @[DO_RRTMGP] - active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 - lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' - lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' - sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' - sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' - rrtmgp_nGptsSW = 112 - rrtmgp_nGptsLW = 128 - rrtmgp_nBandsLW = 16 - rrtmgp_nBandsSW = 14 - doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] - doGP_lwscat = @[DOGP_LWSCAT] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] - fscav_aero = @[FSCAV_AERO] - do_ca = @[DO_CA] - ca_global = @[CA_GLOBAL] - ca_sgs = @[CA_SGS] - nca = @[NCA] - ncells = @[NCELLS] - nlives = @[NLIVES] - nseed = @[NSEED] - nfracseed = @[NFRACSEED] - nthresh = @[NTHRESH] - ca_trigger = @[CA_TRIGGER] - nspinup = @[NSPINUP] - iseed_ca = @[ISEED_CA] - gwd_opt = @[GWD_OPT] - do_ugwp_v0 = @[DO_UGWP_V0] - do_ugwp_v1 = @[DO_UGWP_V1] - do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] - do_gsl_drag_ss = @[DO_GSL_DRAG_SS] - do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] - do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] - do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = 2 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = @[FNALBC] - FNALBC2 = @[FNALBC2] - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' - FNTG3C = @[FNTG3C] - FNVEGC = @[FNVEGC] - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = @[FNMSKH] - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = @[FNVMNC] - FNVMXC = @[FNVMXC] - FNSLPC = @[FNSLPC] - FNABSC = @[FNABSC] - LDEBUG =.false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = @[LANDICE] - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = @[FSICL] - FSICS = 99999 - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy - STOCHINI=@[STOCHINI] - SKEBNORM=1 - SKEB_NPASS=30 - SKEB_VDOF=5 - SKEB=@[SKEB] - SKEB_TAU=2.16E4 - SKEB_LSCALE=1000.E3 - SKEBINT=1800 - SHUM=@[SHUM] - SHUM_TAU=21600 - SHUM_LSCALE=500000 - SHUMINT=3600 - SPPT=@[SPPT] - SPPT_TAU=21600 - SPPT_LSCALE=500000 - SPPT_LOGIT=.TRUE. - SPPT_SFCLIMIT=.TRUE. - SPPTINT=1800 - ISEED_SHUM=1 - ISEED_SKEB=2 - ISEED_SPPT=3 -/ - -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600 - LNDP_LSCALE=500000 - ISEED_LNDP=2010 - lndp_var_list = @[LNDP_VAR_LIST] - lndp_prt_list = @[LNDP_PRT_LIST] -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_version = @[KNOB_UGWP_VERSION] - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 2 - knob_ugwp_ndx4lh = 4 - knob_ugwp_palaunch = 275.0e2 - knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] - knob_ugwp_lzmax = 15.750e3 - knob_ugwp_lzmin = 0.75e3 - knob_ugwp_lzstar = 2.0e3 - knob_ugwp_taumin = 0.25e-3 - knob_ugwp_tauamp = 3.0e-3 - knob_ugwp_lhmet = 200.0e3 - knob_ugwp_orosolv = 'pss-1986' -/ - -&MOM_input_nml - output_directory = 'MOM6_OUTPUT/', - input_filename = '@[MOM6_RESTART_SETTING]' - restart_input_dir = 'INPUT/', - restart_output_dir = 'RESTART/', - parameter_filename = 'INPUT/MOM_input', - 'INPUT/MOM_override'/ - diff --git a/tests/rt.conf b/tests/rt.conf index 3f579ee12d..17a20ce93f 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -8,7 +8,6 @@ RUN | cpld_2threads_p8 RUN | cpld_decomp_p8 | - wcoss_cray jet.intel | | RUN | cpld_mpi_p8 | - wcoss_cray | | -RUN | cpld_bmark_p7 | - wcoss_cray | fv3 | RUN | cpld_bmark_p8 | - wcoss_cray jet.intel | fv3 | # Waves off for restart and debug tests diff --git a/tests/tests/control_p7_rrtmgp b/tests/tests/control_p7_rrtmgp deleted file mode 100644 index b190c8cd5b..0000000000 --- a/tests/tests/control_p7_rrtmgp +++ /dev/null @@ -1,162 +0,0 @@ -############################################################################### -# -# Global control test GFSv16 atmosphere only at C96L127, P7 configuration + RRTMGP -# -############################################################################### - -export TEST_DESCR="Compare global control results with previous trunk version" - -export CNTL_DIR=control_p7_rrtmgp - -export LIST_FILES="sfcf000.nc \ - sfcf021.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf021.nc \ - atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF21 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF21 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="12 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export OUTPUT_FH='0 21 24' - -#P7 default -export IALB=2 -export IEMS=2 -export LSM=2 -export IOPT_DVEG=4 -export IOPT_CRS=2 -export IOPT_RAD=3 -export IOPT_ALB=1 -export IOPT_STC=3 - -# FV3 P7 settings -export D2_BG_K1=0.20 -export D2_BG_K2=0.04 -export DZ_MIN=2 -export PSM_BC=1 -export DDDMP=0.1 - -# P7 Merra2 Aerosols & NSST -export USE_MERRA2=.true. -export IAER=1011 -export NSTF_NAME=2,1,0,0,0 - -export LHEATSTRG=.true. -export LSEASPRAY=.true. - -# P7 UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export CDMBWD='1.0,2.2,1.0,1.0' - -# P7 CA -export DO_CA=.true. -export CA_SGS=.true. -export CA_GLOBAL=.false. -export NCA=1 -export NCELLS=5 -export NLIVES=12 -export NTHRESH=18 -export NSEED=1 -export NFRACSEED=0.5 -export CA_TRIGGER=.true. -export NSPINUP=1 -export ISEED_CA=12345 - -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=99999 -export FSICS=99999 - -#P7 -export IOPT_SFC=1 -export DNATS=1 -export IMP_PHYSICS=11 -export KNOB_UGWP_VERSION=1 - -#required for NML.IN sharing -export USE_CICE_ALB=.false. -export MIN_SEAICE=0.15 -export FRAC_GRID=.true. -export MOM6_RESTART_SETTING=n - -export FV3_RUN=control_run.IN -export DIAG_TABLE=diag_table_gfsv16_merra2 -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control_p7.nml.IN - -# RRTMGP -export CCPP_SUITE=FV3_GFS_v16_p7_rrtmgp -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/cpld_bmark_p7 b/tests/tests/cpld_bmark_p7 deleted file mode 100644 index 81969139ef..0000000000 --- a/tests/tests/cpld_bmark_p7 +++ /dev/null @@ -1,166 +0,0 @@ -# -# cpld_bmark_p7 test -# -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark P7 test" - -export CNTL_DIR="cpld_bmark_p7" - -export LIST_FILES="sfcf006.nc \ - atmf006.nc \ - 20130401.060000.out_grd.gwes_30m \ - 20130401.060000.out_pnt.points \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-01-21600.nc \ - RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc" - -export_fv3 -export_cpl - -export SYEAR=2013 -export SMONTH=04 -export SDAY=01 -export SHOUR=00 -export SECS=`expr $SHOUR \* 3600` -export BMIC=.true. - -export DAYS=0.25 -export FHMAX=6 -export RESTART_N=`expr ${FHMAX} - ${FHROT}` -export RESTART_INTERVAL="${RESTART_N} -1" - -export TASKS=$TASKS_cpl_bmrk -export TPN=$TPN_cpl_bmrk -export INPES=$INPES_cpl_bmrk -export JNPES=$JNPES_cpl_bmrk -export THRD=$THRD_cpl_bmrk -export WRTTASK_PER_GROUP=$WPG_cpl_bmrk - -export med_petlist_bounds=$MPB_cpl_bmrk -export atm_petlist_bounds=$APB_cpl_bmrk -export ocn_petlist_bounds=$OPB_cpl_bmrk -export ice_petlist_bounds=$IPB_cpl_bmrk -export wav_petlist_bounds=$WPB_cpl_bmrk - -# atm/ocn/ice resolution -export ATMRES=C384 -export NPX=385 -export NPY=385 -export IMO=1536 -export JMO=768 -export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` - -export OCNRES=025 -export ICERES=0.25 -export NX_GLB=1440 -export NY_GLB=1080 -export NPROC_ICE=$NPROC_ICE_cpl_bmrk -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -# set component and coupling timesteps -export DT_ATMOS=300 -export DT_CICE=${DT_ATMOS} -export DT_DYNAM_MOM6=900 -export DT_THERM_MOM6=1800 - -# nems.configure -export NEMS_CONFIGURE=nems.configure.cpld_wave.IN -export coupling_interval_slow_sec=${DT_THERM_MOM6} -export coupling_interval_fast_sec=${DT_ATMOS} - -# resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc - -export FNALBC="'C384.snowfree_albedo.tileX.nc'" -export FNALBC2="'C384.facsf.tileX.nc'" -export FNTG3C="'C384.substrate_temperature.tileX.nc'" -export FNVEGC="'C384.vegetation_greenness.tileX.nc'" -export FNVETC="'C384.vegetation_type.tileX.nc'" -export FNSOTC="'C384.soil_type.tileX.nc'" -export FNVMNC="'C384.vegetation_greenness.tileX.nc'" -export FNVMXC="'C384.vegetation_greenness.tileX.nc'" -export FNSLPC="'C384.slope_type.tileX.nc'" -export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" - -export MOM6_RIVER_RUNOFF=True -export MOM6_RESTART_SETTING=r - -#P7 -export USE_CICE_ALB=.false. -export MIN_SEAICE=1.0e-11 -export IOPT_SFC=1 -export DNATS=1 -export IMP_PHYSICS=11 -export CCPP_SUITE=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -export FIELD_TABLE=field_table_gfsv16 -export LGFDLMPRAD=.true. -export KNOB_UGWP_VERSION=1 -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. -export FSICL=99999 -export FSICS=99999 -export DO_SAT_ADJ=.true. -export CDMBWD='1.0,2.2,1.0,1.0' -export DZ_MIN=2 -export WRITE_NSFLIP=.false. -export FV3BMIC='gfs_p7' - -export WW3GRIDLINE="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" -export WW3RSTDTHR=${FHMAX} -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END - -export DIAG_TABLE=diag_table_template - -export FV3_RUN=cpld_control_run.IN -export INPUT_NML=cpld_control_p7.nml.IN diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 0e3ade94e3..c877d006aa 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -152,9 +152,3 @@ export RST_2_END=$RUN_END export FV3_RUN=cpld_control_run.IN export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - -# RRTMGP -export CCPP_SUITE=FV3_GFS_v17_coupled_p8 -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index d55152663e..c68ce14016 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -84,9 +84,3 @@ export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN - -# RRTMGP -export CCPP_SUITE=FV3_GFS_v17_coupled_p8 -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. From fd9c692d609416d99bd13780a9424fba84036488 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 6 Apr 2022 15:48:41 +0000 Subject: [PATCH 39/57] Add GP setting to non-coupled p8 tests. --- tests/tests/control_2threads_p8 | 5 +++++ tests/tests/control_debug_p8 | 5 +++++ tests/tests/control_decomp_p8 | 5 +++++ tests/tests/control_restart_p8 | 5 +++++ 4 files changed, 20 insertions(+) diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index 9d1730eb7e..450aebf7c5 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -160,3 +160,8 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN + +# P8 RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index 9fd31539b2..7fae9fd85d 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -119,3 +119,8 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN + +# P8 RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8 index a231a761de..9d2ef94a64 100644 --- a/tests/tests/control_decomp_p8 +++ b/tests/tests/control_decomp_p8 @@ -158,3 +158,8 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN + +# P8 RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index 89489f131b..58ec0953cd 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -158,3 +158,8 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN + +# P8 RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file From e34b819e95255310ec4ea963d9460c0dd0b5eca4 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 6 Apr 2022 19:44:50 +0000 Subject: [PATCH 40/57] Added bounding to temperature at layer-interface used by RRTMGP. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 7cc75bd48b..ab975b6dd7 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 7cc75bd48b05816943cd364b46a1101327d1e0a1 +Subproject commit ab975b6dd7d6d2070f5bd467677ec4a9edcea0b5 From f1f339d28c872e5152e8f8d23a018a94b9e7f312 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 6 Apr 2022 20:17:47 +0000 Subject: [PATCH 41/57] Reorder loop --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index ab975b6dd7..df922fad19 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ab975b6dd7d6d2070f5bd467677ec4a9edcea0b5 +Subproject commit df922fad19d17ec06731386ddc81fc2ad4f611f5 From 76c16824eb8e09cf42abb06cc5040ff20ccfbc85 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 6 Apr 2022 22:05:55 +0000 Subject: [PATCH 42/57] Combined gp sw and lw aerosol routines. Modest speedup (~4%). Add GP setting to test setup. --- FV3 | 2 +- tests/default_vars.sh | 1 + tests/tests/control_2threads_p8 | 3 ++- tests/tests/control_debug_p8 | 3 ++- tests/tests/control_decomp_p8 | 3 ++- tests/tests/control_p8 | 3 ++- tests/tests/control_restart_p8 | 3 ++- 7 files changed, 12 insertions(+), 6 deletions(-) diff --git a/FV3 b/FV3 index df922fad19..6b1adcb72a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit df922fad19d17ec06731386ddc81fc2ad4f611f5 +Subproject commit 6b1adcb72ab6478d873e52c2884021e3b7295331 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index d9f98711ff..d2fc0b0f4d 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1193,6 +1193,7 @@ export CDMBWD=${CDMBWD_c96} export DO_RRTMGP=.true. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true +export DOGP_SGS_CNV=.true. #P8 UGWD export DO_UGWP_V0=.true. diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index 450aebf7c5..a490d7cc60 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -164,4 +164,5 @@ export INPUT_NML=cpld_control.nml.IN # P8 RRTMGP export DO_RRTMGP=.true. export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. \ No newline at end of file diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index 7fae9fd85d..14d027770a 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -123,4 +123,5 @@ export INPUT_NML=cpld_control.nml.IN # P8 RRTMGP export DO_RRTMGP=.true. export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8 index 9d2ef94a64..4fdf2d982b 100644 --- a/tests/tests/control_decomp_p8 +++ b/tests/tests/control_decomp_p8 @@ -162,4 +162,5 @@ export INPUT_NML=cpld_control.nml.IN # P8 RRTMGP export DO_RRTMGP=.true. export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index 9e62286f79..3497ad801b 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -163,4 +163,5 @@ export INPUT_NML=cpld_control.nml.IN # RRTMGP export DO_RRTMGP=.true. export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index 58ec0953cd..8703295c6b 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -162,4 +162,5 @@ export INPUT_NML=cpld_control.nml.IN # P8 RRTMGP export DO_RRTMGP=.true. export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. From 08de0ced43be0cb051016d7d1c4c84a606089552 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 6 Apr 2022 23:23:52 +0000 Subject: [PATCH 43/57] ORT logs --- tests/OpnReqTests_control_p8_hera.intel.log | 70 +++++++++---------- ..._cpld_control_c96_noaero_p8_hera.intel.log | 46 ++++++------ tests/rt.sh | 2 +- 3 files changed, 59 insertions(+), 59 deletions(-) diff --git a/tests/OpnReqTests_control_p8_hera.intel.log b/tests/OpnReqTests_control_p8_hera.intel.log index e4b376b370..6c388501ff 100644 --- a/tests/OpnReqTests_control_p8_hera.intel.log +++ b/tests/OpnReqTests_control_p8_hera.intel.log @@ -1,9 +1,9 @@ -Sat Mar 26 23:48:27 EDT 2022 +Wed Apr 6 20:51:37 UTC 2022 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_298296/control_p8_bit_base +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_bit_base Checking test bit_base control_p8 results .... Moving baseline bit_base control_p8 files .... Moving sfcf000.nc .........OK @@ -51,27 +51,27 @@ Moving baseline bit_base control_p8 files .... Moving RESTART/sfc_data.tile5.nc .........OK Moving RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 186.171951 - 0: The maximum resident set size (KB) = 868648 + 0: The total amount of wall time = 223.323130 + 0: The maximum resident set size (KB) = 986108 Test bit_base control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_298296/control_p8_dbg_base +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_dbg_base Checking test dbg_base control_p8 results .... Moving baseline dbg_base control_p8 files .... Moving sfcf001.nc .........OK Moving sfcf001.nc .........OK - 0: The total amount of wall time = 172.541718 - 0: The maximum resident set size (KB) = 1008644 + 0: The total amount of wall time = 188.146796 + 0: The maximum resident set size (KB) = 1133204 Test dbg_base control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_298296/control_p8_dcp +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_dcp Checking test dcp control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -118,14 +118,14 @@ Checking test dcp control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.494729 - 0: The maximum resident set size (KB) = 845704 + 0: The total amount of wall time = 198.841330 + 0: The maximum resident set size (KB) = 969344 Test dcp control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_298296/control_p8_fhz +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_fhz Checking test fhz control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -168,14 +168,14 @@ Checking test fhz control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.815925 - 0: The maximum resident set size (KB) = 850676 + 0: The total amount of wall time = 193.502760 + 0: The maximum resident set size (KB) = 969984 Test fhz control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_298296/control_p8_mpi +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_mpi Checking test mpi control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -222,14 +222,14 @@ Checking test mpi control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.688097 - 0: The maximum resident set size (KB) = 913388 + 0: The total amount of wall time = 312.284807 + 0: The maximum resident set size (KB) = 1042144 Test mpi control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_298296/control_p8_rst +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_rst Checking test rst control_p8 results .... Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -268,14 +268,14 @@ Checking test rst control_p8 results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing sfcf024.nc .........OK - 0: The total amount of wall time = 80.561266 - 0: The maximum resident set size (KB) = 598688 + 0: The total amount of wall time = 101.337361 + 0: The maximum resident set size (KB) = 748452 Test rst control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_298296/control_p8_std_base +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_std_base Checking test std_base control_p8 results .... Moving baseline std_base control_p8 files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base control_p8 files .... Moving RESTART/sfc_data.tile5.nc .........OK Moving RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.517658 - 0: The maximum resident set size (KB) = 845832 + 0: The total amount of wall time = 191.568003 + 0: The maximum resident set size (KB) = 974524 Test std_base control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_298296/control_p8_thr +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_thr Checking test thr control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -377,11 +377,11 @@ Checking test thr control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.839660 - 0: The maximum resident set size (KB) = 919976 + 0: The total amount of wall time = 252.746072 + 0: The maximum resident set size (KB) = 1113940 Test thr control_p8 PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sun Mar 27 02:09:03 EDT 2022 -Elapsed time: 02h:20m:37s. Have a nice day! +Wed Apr 6 21:51:58 UTC 2022 +Elapsed time: 01h:00m:21s. Have a nice day! diff --git a/tests/OpnReqTests_cpld_control_c96_noaero_p8_hera.intel.log b/tests/OpnReqTests_cpld_control_c96_noaero_p8_hera.intel.log index de97a8b8f1..3299a1285d 100644 --- a/tests/OpnReqTests_cpld_control_c96_noaero_p8_hera.intel.log +++ b/tests/OpnReqTests_cpld_control_c96_noaero_p8_hera.intel.log @@ -1,9 +1,9 @@ -Sat Mar 26 14:09:36 EDT 2022 +Wed Apr 6 22:08:01 UTC 2022 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_30280/cpld_control_c96_noaero_p8_dbg_base +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_227826/cpld_control_c96_noaero_p8_dbg_base Checking test dbg_base cpld_control_c96_noaero_p8 results .... Moving baseline dbg_base cpld_control_c96_noaero_p8 files .... Moving sfcf006.tile1.nc .........OK @@ -54,14 +54,14 @@ Moving baseline dbg_base cpld_control_c96_noaero_p8 files .... Moving RESTART/iced.2021-03-22-43200.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 604.504427 - 0: The maximum resident set size (KB) = 1063352 + 0: The total amount of wall time = 701.467643 + 0: The maximum resident set size (KB) = 1188428 Test dbg_base cpld_control_c96_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_30280/cpld_control_c96_noaero_p8_dcp +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_227826/cpld_control_c96_noaero_p8_dcp Checking test dcp cpld_control_c96_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -123,14 +123,14 @@ Checking test dcp cpld_control_c96_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 = 233.302314 - 0: The maximum resident set size (KB) = 901728 + 0: The total amount of wall time = 267.616965 + 0: The maximum resident set size (KB) = 1021152 Test dcp cpld_control_c96_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_30280/cpld_control_c96_noaero_p8_rst +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_227826/cpld_control_c96_noaero_p8_rst Checking test rst cpld_control_c96_noaero_p8 results .... Comparing atmf024.tile1.nc .........OK Comparing atmf024.tile2.nc .........OK @@ -180,14 +180,14 @@ Checking test rst cpld_control_c96_noaero_p8 results .... Comparing sfcf024.tile5.nc .........OK Comparing sfcf024.tile6.nc .........OK - 0: The total amount of wall time = 115.704398 - 0: The maximum resident set size (KB) = 671592 + 0: The total amount of wall time = 135.875481 + 0: The maximum resident set size (KB) = 806596 Test rst cpld_control_c96_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_30280/cpld_control_c96_noaero_p8_std_base +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_227826/cpld_control_c96_noaero_p8_std_base Checking test std_base cpld_control_c96_noaero_p8 results .... Moving baseline std_base cpld_control_c96_noaero_p8 files .... Moving sfcf021.tile1.nc .........OK @@ -250,14 +250,14 @@ Moving baseline std_base cpld_control_c96_noaero_p8 files .... 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 = 213.791041 - 0: The maximum resident set size (KB) = 905196 + 0: The total amount of wall time = 255.559966 + 0: The maximum resident set size (KB) = 1021500 Test std_base cpld_control_c96_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Helin.Wei/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_OPNREQ_TEST/opnReqTest_30280/cpld_control_c96_noaero_p8_thr +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_227826/cpld_control_c96_noaero_p8_thr Checking test thr cpld_control_c96_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -319,11 +319,11 @@ Checking test thr cpld_control_c96_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 = 251.722221 - 0: The maximum resident set size (KB) = 990948 + 0: The total amount of wall time = 313.511756 + 0: The maximum resident set size (KB) = 1177104 Test thr cpld_control_c96_noaero_p8 PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sat Mar 26 14:59:26 EDT 2022 -Elapsed time: 00h:49m:51s. Have a nice day! +Wed Apr 6 22:56:35 UTC 2022 +Elapsed time: 00h:48m:34s. Have a nice day! diff --git a/tests/rt.sh b/tests/rt.sh index 5960ddc43b..1898106c1b 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -485,7 +485,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20220405 +BL_DATE=20220406 if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]] || [[ $MACHINE_ID = s4.* ]]; then RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} else From e8066153145f0544d1ceba5e29875f079d882c57 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 6 Apr 2022 18:31:10 -0600 Subject: [PATCH 44/57] [AutoRT] cheyenne.gnu Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_cheyenne.gnu.log | 336 ++++++++++++------------- 1 file changed, 168 insertions(+), 168 deletions(-) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index fb38272290..48635a8d43 100755 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,16 +1,16 @@ -Tue Apr 5 15:28:27 MDT 2022 +Wed Apr 6 17:56:35 MDT 2022 Start Regression test -Compile 001 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 393 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 814 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 192 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 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 273 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 289 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 790 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 193 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 500 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 284 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 007 elapsed time 287 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -57,14 +57,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 273.493829 -0:The maximum resident set size (KB) = 433468 +0:The total amount of wall time = 273.595929 +0:The maximum resident set size (KB) = 433556 Test 001 control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -103,14 +103,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 137.067893 -0:The maximum resident set size (KB) = 183116 +0:The total amount of wall time = 134.663836 +0:The maximum resident set size (KB) = 184128 Test 002 control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -149,14 +149,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 815.793603 -0:The maximum resident set size (KB) = 670124 +0:The total amount of wall time = 816.567806 +0:The maximum resident set size (KB) = 670060 Test 003 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -167,14 +167,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 169.939143 -0:The maximum resident set size (KB) = 427720 +0:The total amount of wall time = 174.723091 +0:The maximum resident set size (KB) = 427616 Test 004 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -185,14 +185,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 335.357452 -0:The maximum resident set size (KB) = 485596 +0:The total amount of wall time = 339.031001 +0:The maximum resident set size (KB) = 485928 Test 005 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -203,14 +203,14 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 339.125270 -0:The maximum resident set size (KB) = 545648 +0:The total amount of wall time = 336.479799 +0:The maximum resident set size (KB) = 545792 Test 006 control_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -221,14 +221,14 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 363.998490 -0:The maximum resident set size (KB) = 795208 +0:The total amount of wall time = 363.418811 +0:The maximum resident set size (KB) = 794992 Test 007 control_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_no_aero -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_thompson_no_aero +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_thompson_no_aero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -239,14 +239,14 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 345.390987 -0:The maximum resident set size (KB) = 789064 +0:The total amount of wall time = 347.563007 +0:The maximum resident set size (KB) = 789080 Test 008 control_thompson_no_aero PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -257,14 +257,14 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 289.101952 -0:The maximum resident set size (KB) = 446208 +0:The total amount of wall time = 289.992517 +0:The maximum resident set size (KB) = 446284 Test 009 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_p8 Checking test 010 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -311,14 +311,14 @@ Checking test 010 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 305.643066 -0:The maximum resident set size (KB) = 817956 +0:The total amount of wall time = 372.350132 +0:The maximum resident set size (KB) = 928232 Test 010 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/rap_control Checking test 011 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -365,14 +365,14 @@ Checking test 011 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 684.140698 -0:The maximum resident set size (KB) = 773532 +0:The total amount of wall time = 689.583782 +0:The maximum resident set size (KB) = 773556 Test 011 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/rap_2threads Checking test 012 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -419,14 +419,14 @@ Checking test 012 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1206.230683 -0:The maximum resident set size (KB) = 840828 +0:The total amount of wall time = 1209.028896 +0:The maximum resident set size (KB) = 840712 Test 012 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/rap_restart Checking test 013 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -465,14 +465,14 @@ Checking test 013 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 344.188872 -0:The maximum resident set size (KB) = 521592 +0:The total amount of wall time = 343.791319 +0:The maximum resident set size (KB) = 520952 Test 013 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/rap_sfcdiff Checking test 014 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -519,14 +519,14 @@ Checking test 014 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 690.650666 -0:The maximum resident set size (KB) = 773732 +0:The total amount of wall time = 688.324322 +0:The maximum resident set size (KB) = 773724 Test 014 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/rap_sfcdiff_restart Checking test 015 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -565,14 +565,14 @@ Checking test 015 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 343.068475 -0:The maximum resident set size (KB) = 520956 +0:The total amount of wall time = 340.074872 +0:The maximum resident set size (KB) = 520800 Test 015 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/hrrr_control Checking test 016 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -619,14 +619,14 @@ Checking test 016 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 668.295798 -0:The maximum resident set size (KB) = 771424 +0:The total amount of wall time = 661.497731 +0:The maximum resident set size (KB) = 771388 Test 016 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -673,14 +673,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 681.664979 -0:The maximum resident set size (KB) = 771020 +0:The total amount of wall time = 680.682149 +0:The maximum resident set size (KB) = 771412 Test 017 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/rrfs_conus13km_hrrr_warm Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -689,14 +689,14 @@ Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 316.444120 -0:The maximum resident set size (KB) = 592264 +0:The total amount of wall time = 318.649553 +0:The maximum resident set size (KB) = 592196 Test 018 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -705,250 +705,250 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 321.324938 -0:The maximum resident set size (KB) = 594556 +0:The total amount of wall time = 320.133730 +0:The maximum resident set size (KB) = 595080 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_debug Checking test 020 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 = 79.571303 -0:The maximum resident set size (KB) = 424348 +0:The total amount of wall time = 80.116775 +0:The maximum resident set size (KB) = 424432 Test 020 control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/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 -0:The total amount of wall time = 86.393915 -0:The maximum resident set size (KB) = 481512 +0:The total amount of wall time = 85.160126 +0:The maximum resident set size (KB) = 481652 Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/fv3_regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/fv3_regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/regional_debug Checking test 022 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 = 130.929601 -0:The maximum resident set size (KB) = 535588 +0:The total amount of wall time = 130.611155 +0:The maximum resident set size (KB) = 536136 Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/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 -0:The total amount of wall time = 144.439886 -0:The maximum resident set size (KB) = 795872 +0:The total amount of wall time = 144.220306 +0:The maximum resident set size (KB) = 795960 Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/rap_diag_debug Checking test 024 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 = 153.002450 -0:The maximum resident set size (KB) = 878512 +0:The total amount of wall time = 153.568776 +0:The maximum resident set size (KB) = 878524 Test 024 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/rap_noah_sfcdiff_cires_ugwp_debug Checking test 025 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 = 233.216651 -0:The maximum resident set size (KB) = 794440 +0:The total amount of wall time = 236.037624 +0:The maximum resident set size (KB) = 795112 Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/rap_progcld_thompson_debug Checking test 026 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 = 144.183851 -0:The maximum resident set size (KB) = 795936 +0:The total amount of wall time = 144.458306 +0:The maximum resident set size (KB) = 795968 Test 026 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/rrfs_v1beta_debug Checking test 027 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 = 143.990261 -0:The maximum resident set size (KB) = 790732 +0:The total amount of wall time = 143.855190 +0:The maximum resident set size (KB) = 790856 Test 027 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_thompson_debug Checking test 028 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.902491 -0:The maximum resident set size (KB) = 781964 +0:The total amount of wall time = 94.150458 +0:The maximum resident set size (KB) = 782468 Test 028 control_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_thompson_no_aero_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_thompson_no_aero_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_thompson_no_aero_debug Checking test 029 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.142503 -0:The maximum resident set size (KB) = 777292 +0:The total amount of wall time = 90.612308 +0:The maximum resident set size (KB) = 777388 Test 029 control_thompson_no_aero_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_debug_extdiag -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_thompson_extdiag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_thompson_debug_extdiag +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_thompson_extdiag_debug Checking test 030 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 100.531776 -0:The maximum resident set size (KB) = 823508 +0:The total amount of wall time = 100.617781 +0:The maximum resident set size (KB) = 823656 Test 030 control_thompson_extdiag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_thompson_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_thompson_progcld_thompson_debug Checking test 031 control_thompson_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 = 93.985268 -0:The maximum resident set size (KB) = 781960 +0:The total amount of wall time = 93.655654 +0:The maximum resident set size (KB) = 782008 Test 031 control_thompson_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_rrtmgp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_rrtmgp_debug Checking test 032 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 86.793481 -0:The maximum resident set size (KB) = 535396 +0:The total amount of wall time = 86.679165 +0:The maximum resident set size (KB) = 535856 Test 032 control_rrtmgp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_ras_debug Checking test 033 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 = 83.092272 -0:The maximum resident set size (KB) = 434200 +0:The total amount of wall time = 83.014943 +0:The maximum resident set size (KB) = 434292 Test 033 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_stochy_debug Checking test 034 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 = 90.357087 -0:The maximum resident set size (KB) = 428112 +0:The total amount of wall time = 90.808259 +0:The maximum resident set size (KB) = 428384 -Test 034 control_stochy_debug PASS Tries: 2 +Test 034 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_debug_p8 Checking test 035 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 = 91.474511 -0:The maximum resident set size (KB) = 808392 +0:The total amount of wall time = 97.560633 +0:The maximum resident set size (KB) = 920168 Test 035 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 143.999159 -0:The maximum resident set size (KB) = 170704 +0:The total amount of wall time = 142.882935 +0:The maximum resident set size (KB) = 171712 -Test 036 control_wam_debug PASS +Test 036 control_wam_debug PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/cpld_control_c96_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/cpld_control_c96_noaero_p8 Checking test 037 cpld_control_c96_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 037 cpld_control_c96_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 = 390.545528 -0:The maximum resident set size (KB) = 842252 +0:The total amount of wall time = 452.324377 +0:The maximum resident set size (KB) = 953220 Test 037 cpld_control_c96_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/cpld_debug_noaero_p8 Checking test 038 cpld_debug_noaero_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,25 +1067,25 @@ Checking test 038 cpld_debug_noaero_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 343.706536 -0:The maximum resident set size (KB) = 858820 +0:The total amount of wall time = 373.498909 +0:The maximum resident set size (KB) = 970040 Test 038 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29071/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_49800/datm_cdeps_control_cfsr Checking test 039 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 172.849807 -0:The maximum resident set size (KB) = 642292 +0:The total amount of wall time = 173.414373 +0:The maximum resident set size (KB) = 650724 Test 039 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 5 16:08:54 MDT 2022 -Elapsed time: 00h:40m:27s. Have a nice day! +Wed Apr 6 18:31:08 MDT 2022 +Elapsed time: 00h:34m:34s. Have a nice day! From 353d8a6ab4060829ad974978da67d906125507bc Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 7 Apr 2022 01:03:56 +0000 Subject: [PATCH 45/57] [AutoRT] hera.gnu Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_hera.gnu.log | 332 ++++++++++++++--------------- 1 file changed, 166 insertions(+), 166 deletions(-) diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 6ac38d4b28..b7447380d9 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,16 +1,16 @@ -Tue Apr 5 22:13:20 UTC 2022 +Thu Apr 7 00:15:33 UTC 2022 Start Regression test -Compile 001 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 297 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 96 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 220 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 122 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 296 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 102 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 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 120 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 007 elapsed time 117 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -57,14 +57,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 783.183466 - 0: The maximum resident set size (KB) = 477948 + 0: The total amount of wall time = 797.870499 + 0: The maximum resident set size (KB) = 477244 Test 001 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -103,14 +103,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.673802 - 0: The maximum resident set size (KB) = 180564 + 0: The total amount of wall time = 388.443181 + 0: The maximum resident set size (KB) = 180284 Test 002 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -149,14 +149,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 672.344002 -0: The maximum resident set size (KB) = 693344 +0: The total amount of wall time = 673.988057 +0: The maximum resident set size (KB) = 693112 Test 003 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -167,14 +167,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 624.974861 - 0: The maximum resident set size (KB) = 477684 + 0: The total amount of wall time = 622.648515 + 0: The maximum resident set size (KB) = 482884 Test 004 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -185,14 +185,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1350.973649 - 0: The maximum resident set size (KB) = 527856 + 0: The total amount of wall time = 1374.161318 + 0: The maximum resident set size (KB) = 523516 Test 005 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -203,14 +203,14 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 824.198868 - 0: The maximum resident set size (KB) = 590576 + 0: The total amount of wall time = 834.995070 + 0: The maximum resident set size (KB) = 591304 Test 006 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -221,14 +221,14 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 980.622264 - 0: The maximum resident set size (KB) = 839792 + 0: The total amount of wall time = 1017.049875 + 0: The maximum resident set size (KB) = 844356 Test 007 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -239,14 +239,14 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 958.293834 - 0: The maximum resident set size (KB) = 835944 + 0: The total amount of wall time = 996.101227 + 0: The maximum resident set size (KB) = 840676 Test 008 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -257,14 +257,14 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 802.937754 - 0: The maximum resident set size (KB) = 488860 + 0: The total amount of wall time = 801.418175 + 0: The maximum resident set size (KB) = 488492 Test 009 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_p8 Checking test 010 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -311,14 +311,14 @@ Checking test 010 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 843.891453 - 0: The maximum resident set size (KB) = 831828 + 0: The total amount of wall time = 883.885014 + 0: The maximum resident set size (KB) = 951184 Test 010 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/rap_control Checking test 011 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -365,14 +365,14 @@ Checking test 011 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1378.436520 - 0: The maximum resident set size (KB) = 825396 + 0: The total amount of wall time = 1391.685794 + 0: The maximum resident set size (KB) = 826820 Test 011 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/rap_2threads Checking test 012 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -419,14 +419,14 @@ Checking test 012 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1368.537788 - 0: The maximum resident set size (KB) = 889084 + 0: The total amount of wall time = 1390.387326 + 0: The maximum resident set size (KB) = 894000 Test 012 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/rap_restart Checking test 013 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -465,14 +465,14 @@ Checking test 013 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 666.579260 - 0: The maximum resident set size (KB) = 538100 + 0: The total amount of wall time = 679.781307 + 0: The maximum resident set size (KB) = 536848 Test 013 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/rap_sfcdiff Checking test 014 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -519,14 +519,14 @@ Checking test 014 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1361.168331 - 0: The maximum resident set size (KB) = 825132 + 0: The total amount of wall time = 1391.920327 + 0: The maximum resident set size (KB) = 825540 Test 014 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/rap_sfcdiff_restart Checking test 015 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -565,14 +565,14 @@ Checking test 015 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 678.452465 - 0: The maximum resident set size (KB) = 538696 + 0: The total amount of wall time = 678.034727 + 0: The maximum resident set size (KB) = 542056 Test 015 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/hrrr_control Checking test 016 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -619,14 +619,14 @@ Checking test 016 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1364.493037 - 0: The maximum resident set size (KB) = 824448 + 0: The total amount of wall time = 1350.570174 + 0: The maximum resident set size (KB) = 828868 Test 016 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -673,14 +673,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1371.699869 - 0: The maximum resident set size (KB) = 829040 + 0: The total amount of wall time = 1370.801894 + 0: The maximum resident set size (KB) = 827940 Test 017 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/rrfs_conus13km_hrrr_warm Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -689,14 +689,14 @@ Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1564.754494 - 0: The maximum resident set size (KB) = 633780 + 0: The total amount of wall time = 1575.469610 + 0: The maximum resident set size (KB) = 632788 Test 018 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -705,250 +705,250 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1529.050582 - 0: The maximum resident set size (KB) = 637252 + 0: The total amount of wall time = 1603.426793 + 0: The maximum resident set size (KB) = 636040 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_debug Checking test 020 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 = 97.440532 - 0: The maximum resident set size (KB) = 471952 + 0: The total amount of wall time = 97.937853 + 0: The maximum resident set size (KB) = 480792 Test 020 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/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 - 0: The total amount of wall time = 122.430395 - 0: The maximum resident set size (KB) = 532052 + 0: The total amount of wall time = 122.569432 + 0: The maximum resident set size (KB) = 532484 Test 021 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/fv3_regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/regional_debug Checking test 022 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 = 125.013173 - 0: The maximum resident set size (KB) = 550068 + 0: The total amount of wall time = 128.648062 + 0: The maximum resident set size (KB) = 548428 Test 022 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/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 - 0: The total amount of wall time = 169.578250 - 0: The maximum resident set size (KB) = 841020 + 0: The total amount of wall time = 166.648825 + 0: The maximum resident set size (KB) = 851404 Test 023 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/rap_diag_debug Checking test 024 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 = 201.373971 - 0: The maximum resident set size (KB) = 925904 + 0: The total amount of wall time = 203.685772 + 0: The maximum resident set size (KB) = 930144 Test 024 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/rap_noah_sfcdiff_cires_ugwp_debug Checking test 025 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 = 260.075904 - 0: The maximum resident set size (KB) = 844944 + 0: The total amount of wall time = 266.333247 + 0: The maximum resident set size (KB) = 849304 Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/rap_progcld_thompson_debug Checking test 026 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 = 169.451012 - 0: The maximum resident set size (KB) = 841564 + 0: The total amount of wall time = 168.930050 + 0: The maximum resident set size (KB) = 848656 Test 026 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/rrfs_v1beta_debug Checking test 027 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 = 166.599945 - 0: The maximum resident set size (KB) = 838816 + 0: The total amount of wall time = 162.899125 + 0: The maximum resident set size (KB) = 842376 Test 027 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_thompson_debug Checking test 028 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.594492 - 0: The maximum resident set size (KB) = 841512 + 0: The total amount of wall time = 114.431099 + 0: The maximum resident set size (KB) = 843176 Test 028 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_thompson_no_aero_debug Checking test 029 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.435940 - 0: The maximum resident set size (KB) = 829660 + 0: The total amount of wall time = 109.258567 + 0: The maximum resident set size (KB) = 836712 Test 029 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_thompson_extdiag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_thompson_extdiag_debug Checking test 030 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 135.051439 - 0: The maximum resident set size (KB) = 864228 + 0: The total amount of wall time = 131.298211 + 0: The maximum resident set size (KB) = 867708 Test 030 control_thompson_extdiag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_thompson_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_thompson_progcld_thompson_debug Checking test 031 control_thompson_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 = 111.679007 - 0: The maximum resident set size (KB) = 835900 + 0: The total amount of wall time = 112.470441 + 0: The maximum resident set size (KB) = 841272 Test 031 control_thompson_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_rrtmgp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_rrtmgp_debug Checking test 032 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.886199 - 0: The maximum resident set size (KB) = 590540 + 0: The total amount of wall time = 106.126537 + 0: The maximum resident set size (KB) = 590492 Test 032 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_ras_debug Checking test 033 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.325095 - 0: The maximum resident set size (KB) = 484708 + 0: The total amount of wall time = 101.471071 + 0: The maximum resident set size (KB) = 488728 Test 033 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_stochy_debug Checking test 034 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 = 115.565377 - 0: The maximum resident set size (KB) = 480868 + 0: The total amount of wall time = 114.417153 + 0: The maximum resident set size (KB) = 480828 Test 034 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_debug_p8 Checking test 035 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 = 109.420283 - 0: The maximum resident set size (KB) = 832428 + 0: The total amount of wall time = 116.883854 + 0: The maximum resident set size (KB) = 946024 Test 035 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 178.750462 - 0: The maximum resident set size (KB) = 192032 + 0: The total amount of wall time = 181.829659 + 0: The maximum resident set size (KB) = 191936 Test 036 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/cpld_control_c96_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/cpld_control_c96_noaero_p8 Checking test 037 cpld_control_c96_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 037 cpld_control_c96_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 = 1103.904609 - 0: The maximum resident set size (KB) = 862468 + 0: The total amount of wall time = 1176.771940 + 0: The maximum resident set size (KB) = 975048 Test 037 cpld_control_c96_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/cpld_debug_noaero_p8 Checking test 038 cpld_debug_noaero_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,25 +1067,25 @@ Checking test 038 cpld_debug_noaero_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 564.530928 - 0: The maximum resident set size (KB) = 868428 + 0: The total amount of wall time = 604.616387 + 0: The maximum resident set size (KB) = 984264 Test 038 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26847/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22350/datm_cdeps_control_cfsr Checking test 039 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.424128 - 0: The maximum resident set size (KB) = 623612 + 0: The total amount of wall time = 165.551987 + 0: The maximum resident set size (KB) = 628996 Test 039 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 5 22:58:34 UTC 2022 -Elapsed time: 00h:45m:15s. Have a nice day! +Thu Apr 7 01:03:53 UTC 2022 +Elapsed time: 00h:48m:20s. Have a nice day! From 60d7901f81f89ddd45fe0441823581cc2b46b40b Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 7 Apr 2022 02:02:15 +0000 Subject: [PATCH 46/57] [AutoRT] hera.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_hera.intel.log | 1787 +++++++++++--------------- 1 file changed, 761 insertions(+), 1026 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 71ca833600..727bb1835e 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,25 +1,25 @@ -Tue Apr 5 22:54:41 UTC 2022 +Thu Apr 7 00:53:45 UTC 2022 Start Regression test -Compile 001 elapsed time 434 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 197 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 310 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 348 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 318 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 179 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 162 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 164 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 300 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 350 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 355 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 191 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 99 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 316 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 314 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_control_p8 +Compile 001 elapsed time 431 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 201 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 301 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 314 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 311 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 175 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 166 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 159 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 154 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 359 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 364 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 185 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 108 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 321 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 326 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -85,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 344.279396 - 0: The maximum resident set size (KB) = 1129296 + 0: The total amount of wall time = 383.282668 + 0: The maximum resident set size (KB) = 1242060 Test 001 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -146,14 +146,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 425.441554 - 0: The maximum resident set size (KB) = 1710884 + 0: The total amount of wall time = 497.932500 + 0: The maximum resident set size (KB) = 1892236 Test 002 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -207,14 +207,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 335.219820 - 0: The maximum resident set size (KB) = 1124140 + 0: The total amount of wall time = 385.908311 + 0: The maximum resident set size (KB) = 1240448 Test 003 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -268,119 +268,15 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 285.509280 - 0: The maximum resident set size (KB) = 1050588 + 0: The total amount of wall time = 320.262142 + 0: The maximum resident set size (KB) = 1160628 Test 004 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_bmark_p7 -Checking test 005 cpld_bmark_p7 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 873.019089 - 0: The maximum resident set size (KB) = 1234012 - -Test 005 cpld_bmark_p7 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_bmark_p7_rrtmgp -Checking test 006 cpld_bmark_p7_rrtmgp results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 980.800115 - 0: The maximum resident set size (KB) = 1361184 - -Test 006 cpld_bmark_p7_rrtmgp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_bmark_p8 -Checking test 007 cpld_bmark_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/cpld_bmark_p8 +Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -425,68 +321,15 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1052.539796 - 0: The maximum resident set size (KB) = 2832384 + 0: The total amount of wall time = 1100.630005 + 0: The maximum resident set size (KB) = 3026400 -Test 007 cpld_bmark_p8 PASS +Test 005 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_bmark_p8_rrtmgp -Checking test 008 cpld_bmark_p8_rrtmgp results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1104.345117 - 0: The maximum resident set size (KB) = 3025928 - -Test 008 cpld_bmark_p8_rrtmgp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_control_c96_p8 -Checking test 009 cpld_control_c96_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/cpld_control_c96_p8 +Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -548,15 +391,15 @@ Checking test 009 cpld_control_c96_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 = 331.796686 - 0: The maximum resident set size (KB) = 1144260 + 0: The total amount of wall time = 374.876965 + 0: The maximum resident set size (KB) = 1259540 -Test 009 cpld_control_c96_p8 PASS +Test 006 cpld_control_c96_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_restart_c96_p8 -Checking test 010 cpld_restart_c96_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/cpld_restart_c96_p8 +Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -606,15 +449,15 @@ Checking test 010 cpld_restart_c96_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 = 183.303081 - 0: The maximum resident set size (KB) = 1107876 + 0: The total amount of wall time = 202.992721 + 0: The maximum resident set size (KB) = 1245436 -Test 010 cpld_restart_c96_p8 PASS +Test 007 cpld_restart_c96_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/cpld_control_c192_p8 +Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -664,15 +507,15 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1471.646290 - 0: The maximum resident set size (KB) = 1586896 + 0: The total amount of wall time = 1632.810091 + 0: The maximum resident set size (KB) = 1724056 -Test 011 cpld_control_c192_p8 PASS +Test 008 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/cpld_restart_c192_p8 +Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -722,15 +565,15 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 965.962094 - 0: The maximum resident set size (KB) = 1802860 + 0: The total amount of wall time = 1084.113152 + 0: The maximum resident set size (KB) = 1929312 -Test 012 cpld_restart_c192_p8 PASS +Test 009 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_control_c384_p8 -Checking test 013 cpld_control_c384_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c384_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/cpld_control_c384_p8 +Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -773,15 +616,15 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1166.170285 - 0: The maximum resident set size (KB) = 2825316 + 0: The total amount of wall time = 1231.804512 + 0: The maximum resident set size (KB) = 3016764 -Test 013 cpld_control_c384_p8 PASS +Test 010 cpld_control_c384_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_restart_c384_p8 -Checking test 014 cpld_restart_c384_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c384_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/cpld_restart_c384_p8 +Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -824,15 +667,15 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 661.457255 - 0: The maximum resident set size (KB) = 2790924 + 0: The total amount of wall time = 695.369615 + 0: The maximum resident set size (KB) = 3034264 -Test 014 cpld_restart_c384_p8 PASS +Test 011 cpld_restart_c384_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/cpld_debug_p8 +Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -882,15 +725,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1031.949654 - 0: The maximum resident set size (KB) = 1265336 + 0: The total amount of wall time = 1114.488633 + 0: The maximum resident set size (KB) = 1380276 -Test 015 cpld_debug_p8 PASS +Test 012 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control -Checking test 016 control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control +Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -936,15 +779,15 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 126.479059 - 0: The maximum resident set size (KB) = 465916 + 0: The total amount of wall time = 129.742753 + 0: The maximum resident set size (KB) = 464072 -Test 016 control PASS +Test 013 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_decomp -Checking test 017 control_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_decomp +Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -986,29 +829,29 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 138.297012 - 0: The maximum resident set size (KB) = 470148 + 0: The total amount of wall time = 130.781759 + 0: The maximum resident set size (KB) = 464984 -Test 017 control_decomp PASS +Test 014 control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_2dwrtdecomp -Checking test 018 control_2dwrtdecomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_2dwrtdecomp +Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 121.170707 - 0: The maximum resident set size (KB) = 470124 + 0: The total amount of wall time = 122.672621 + 0: The maximum resident set size (KB) = 469144 -Test 018 control_2dwrtdecomp PASS +Test 015 control_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_2threads -Checking test 019 control_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_2threads +Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1050,15 +893,15 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 154.404316 - 0: The maximum resident set size (KB) = 517620 + 0: The total amount of wall time = 158.218299 + 0: The maximum resident set size (KB) = 518668 -Test 019 control_2threads PASS +Test 016 control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_restart -Checking test 020 control_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_restart +Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1096,15 +939,15 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 68.466120 - 0: The maximum resident set size (KB) = 213892 + 0: The total amount of wall time = 66.366660 + 0: The maximum resident set size (KB) = 209664 -Test 020 control_restart PASS +Test 017 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_fhzero -Checking test 021 control_fhzero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_fhzero +Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1146,15 +989,15 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 121.208022 - 0: The maximum resident set size (KB) = 465396 + 0: The total amount of wall time = 125.133815 + 0: The maximum resident set size (KB) = 467580 -Test 021 control_fhzero PASS +Test 018 control_fhzero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1180,15 +1023,15 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 122.576727 - 0: The maximum resident set size (KB) = 470028 + 0: The total amount of wall time = 120.070129 + 0: The maximum resident set size (KB) = 469700 -Test 022 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1198,17 +1041,17 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 124.884562 - 0: The maximum resident set size (KB) = 466608 + 0: The total amount of wall time = 127.311749 + 0: The maximum resident set size (KB) = 466792 -Test 023 control_latlon PASS +Test 020 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -1216,15 +1059,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.365330 - 0: The maximum resident set size (KB) = 470368 + 0: The total amount of wall time = 131.686176 + 0: The maximum resident set size (KB) = 470156 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1262,15 +1105,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 322.839466 -0: The maximum resident set size (KB) = 656828 +0: The total amount of wall time = 321.426466 +0: The maximum resident set size (KB) = 654376 -Test 025 control_c48 PASS +Test 022 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1280,15 +1123,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 479.544474 - 0: The maximum resident set size (KB) = 564680 + 0: The total amount of wall time = 473.529371 + 0: The maximum resident set size (KB) = 564896 -Test 026 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1298,15 +1141,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 779.287494 - 0: The maximum resident set size (KB) = 816364 + 0: The total amount of wall time = 790.456640 + 0: The maximum resident set size (KB) = 822828 -Test 027 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1348,15 +1191,15 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 692.466278 - 0: The maximum resident set size (KB) = 968860 + 0: The total amount of wall time = 700.077927 + 0: The maximum resident set size (KB) = 973340 -Test 028 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1366,29 +1209,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.224472 - 0: The maximum resident set size (KB) = 466776 + 0: The total amount of wall time = 88.517392 + 0: The maximum resident set size (KB) = 470420 -Test 029 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 44.713527 - 0: The maximum resident set size (KB) = 250256 + 0: The total amount of wall time = 44.243599 + 0: The maximum resident set size (KB) = 250564 -Test 030 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1398,15 +1241,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 77.890517 - 0: The maximum resident set size (KB) = 470772 + 0: The total amount of wall time = 74.859517 + 0: The maximum resident set size (KB) = 474624 -Test 031 control_lndp PASS +Test 028 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1420,15 +1263,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 126.187935 - 0: The maximum resident set size (KB) = 463188 + 0: The total amount of wall time = 127.219162 + 0: The maximum resident set size (KB) = 467264 -Test 032 control_iovr4 PASS +Test 029 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1442,15 +1285,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.129099 - 0: The maximum resident set size (KB) = 461804 + 0: The total amount of wall time = 125.490445 + 0: The maximum resident set size (KB) = 467008 -Test 033 control_iovr5 PASS +Test 030 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1496,15 +1339,15 @@ Checking test 034 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.049262 - 0: The maximum resident set size (KB) = 853896 + 0: The total amount of wall time = 190.017071 + 0: The maximum resident set size (KB) = 972604 -Test 034 control_p8 PASS +Test 031 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_restart_p8 -Checking test 035 control_restart_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_restart_p8 +Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1542,15 +1385,15 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 82.809670 - 0: The maximum resident set size (KB) = 603492 + 0: The total amount of wall time = 103.157307 + 0: The maximum resident set size (KB) = 748124 -Test 035 control_restart_p8 PASS +Test 032 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_decomp_p8 -Checking test 036 control_decomp_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_decomp_p8 +Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1592,15 +1435,15 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.879227 - 0: The maximum resident set size (KB) = 847272 + 0: The total amount of wall time = 197.873587 + 0: The maximum resident set size (KB) = 971016 -Test 036 control_decomp_p8 PASS +Test 033 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_2threads_p8 -Checking test 037 control_2threads_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_2threads_p8 +Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1642,123 +1485,15 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 184.680728 - 0: The maximum resident set size (KB) = 930332 + 0: The total amount of wall time = 249.707891 + 0: The maximum resident set size (KB) = 1109728 -Test 037 control_2threads_p8 PASS +Test 034 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p7_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_p7_rrtmgp -Checking test 038 control_p7_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 187.086218 - 0: The maximum resident set size (KB) = 619472 - -Test 038 control_p7_rrtmgp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_p8_rrtmgp -Checking test 039 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 200.999261 - 0: The maximum resident set size (KB) = 969868 - -Test 039 control_p8_rrtmgp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_control -Checking test 040 regional_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/regional_control +Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1768,58 +1503,58 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 312.381827 - 0: The maximum resident set size (KB) = 583956 + 0: The total amount of wall time = 311.218715 + 0: The maximum resident set size (KB) = 583060 -Test 040 regional_control PASS +Test 035 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_restart -Checking test 041 regional_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/regional_restart +Checking test 036 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 170.076202 - 0: The maximum resident set size (KB) = 582892 + 0: The total amount of wall time = 170.545188 + 0: The maximum resident set size (KB) = 585736 -Test 041 regional_restart PASS +Test 036 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_control_2dwrtdecomp -Checking test 042 regional_control_2dwrtdecomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/regional_control_2dwrtdecomp +Checking test 037 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 309.682565 - 0: The maximum resident set size (KB) = 581796 + 0: The total amount of wall time = 314.156724 + 0: The maximum resident set size (KB) = 582908 -Test 042 regional_control_2dwrtdecomp PASS +Test 037 regional_control_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_noquilt -Checking test 043 regional_noquilt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/regional_noquilt +Checking test 038 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 323.653195 - 0: The maximum resident set size (KB) = 596272 + 0: The total amount of wall time = 324.636480 + 0: The maximum resident set size (KB) = 599908 -Test 043 regional_noquilt PASS +Test 038 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_2threads -Checking test 044 regional_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/regional_2threads +Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1829,15 +1564,15 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 240.776543 - 0: The maximum resident set size (KB) = 581200 + 0: The total amount of wall time = 233.416552 + 0: The maximum resident set size (KB) = 580260 -Test 044 regional_2threads PASS +Test 039 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_hafs -Checking test 045 regional_hafs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/regional_hafs +Checking test 040 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1845,29 +1580,29 @@ Checking test 045 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 308.376639 - 0: The maximum resident set size (KB) = 581888 + 0: The total amount of wall time = 314.152693 + 0: The maximum resident set size (KB) = 583852 -Test 045 regional_hafs PASS +Test 040 regional_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_netcdf_parallel -Checking test 046 regional_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/regional_netcdf_parallel +Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 308.021442 - 0: The maximum resident set size (KB) = 580664 + 0: The total amount of wall time = 307.039779 + 0: The maximum resident set size (KB) = 584468 -Test 046 regional_netcdf_parallel PASS +Test 041 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_RRTMGP -Checking test 047 regional_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/regional_RRTMGP +Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1877,15 +1612,15 @@ Checking test 047 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 417.237589 - 0: The maximum resident set size (KB) = 694988 + 0: The total amount of wall time = 419.394753 + 0: The maximum resident set size (KB) = 700380 -Test 047 regional_RRTMGP PASS +Test 042 regional_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_3km -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_3km -Checking test 048 regional_3km results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_3km +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1895,15 +1630,15 @@ Checking test 048 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 251.074635 - 0: The maximum resident set size (KB) = 622016 + 0: The total amount of wall time = 244.729407 + 0: The maximum resident set size (KB) = 622968 -Test 048 regional_3km PASS +Test 043 regional_3km PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_control -Checking test 049 rap_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1949,15 +1684,15 @@ Checking test 049 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 358.412619 - 0: The maximum resident set size (KB) = 839000 + 0: The total amount of wall time = 357.114024 + 0: The maximum resident set size (KB) = 837664 -Test 049 rap_control PASS +Test 044 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_rrtmgp -Checking test 050 rap_rrtmgp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2003,15 +1738,15 @@ Checking test 050 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 413.397912 - 0: The maximum resident set size (KB) = 954260 + 0: The total amount of wall time = 399.189342 + 0: The maximum resident set size (KB) = 959260 -Test 050 rap_rrtmgp PASS +Test 045 rap_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_spp_sppt_shum_skeb -Checking test 051 regional_spp_sppt_shum_skeb results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2021,15 +1756,15 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 299.273968 - 0: The maximum resident set size (KB) = 934920 + 0: The total amount of wall time = 298.712617 + 0: The maximum resident set size (KB) = 928172 -Test 051 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_2threads -Checking test 052 rap_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2075,15 +1810,15 @@ Checking test 052 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.154157 - 0: The maximum resident set size (KB) = 901324 + 0: The total amount of wall time = 445.613325 + 0: The maximum resident set size (KB) = 902708 -Test 052 rap_2threads PASS +Test 047 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_restart -Checking test 053 rap_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2121,15 +1856,15 @@ Checking test 053 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 184.999249 - 0: The maximum resident set size (KB) = 591108 + 0: The total amount of wall time = 187.537875 + 0: The maximum resident set size (KB) = 590840 -Test 053 rap_restart PASS +Test 048 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_sfcdiff -Checking test 054 rap_sfcdiff results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2175,15 +1910,15 @@ Checking test 054 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 364.869159 - 0: The maximum resident set size (KB) = 840348 + 0: The total amount of wall time = 371.215050 + 0: The maximum resident set size (KB) = 836792 -Test 054 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_sfcdiff_restart -Checking test 055 rap_sfcdiff_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2221,15 +1956,15 @@ Checking test 055 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.861655 - 0: The maximum resident set size (KB) = 591360 + 0: The total amount of wall time = 183.255671 + 0: The maximum resident set size (KB) = 590276 -Test 055 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hrrr_control -Checking test 056 hrrr_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2275,15 +2010,15 @@ Checking test 056 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 346.666016 - 0: The maximum resident set size (KB) = 835628 + 0: The total amount of wall time = 358.212782 + 0: The maximum resident set size (KB) = 839152 -Test 056 hrrr_control PASS +Test 051 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rrfs_v1beta -Checking test 057 rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2329,15 +2064,15 @@ Checking test 057 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.738409 - 0: The maximum resident set size (KB) = 838236 + 0: The total amount of wall time = 352.241956 + 0: The maximum resident set size (KB) = 839704 -Test 057 rrfs_v1beta PASS +Test 052 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rrfs_v1nssl -Checking test 058 rrfs_v1nssl results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2351,15 +2086,15 @@ Checking test 058 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 444.412459 - 0: The maximum resident set size (KB) = 526224 + 0: The total amount of wall time = 441.754636 + 0: The maximum resident set size (KB) = 526740 -Test 058 rrfs_v1nssl PASS +Test 053 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rrfs_v1nssl_nohailnoccn -Checking test 059 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2373,15 +2108,15 @@ Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 422.918008 - 0: The maximum resident set size (KB) = 523400 + 0: The total amount of wall time = 417.213334 + 0: The maximum resident set size (KB) = 517084 -Test 059 rrfs_v1nssl_nohailnoccn PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rrfs_conus13km_hrrr_warm -Checking test 060 rrfs_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rrfs_conus13km_hrrr_warm +Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2389,15 +2124,15 @@ Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 169.709590 - 0: The maximum resident set size (KB) = 671316 + 0: The total amount of wall time = 164.545744 + 0: The maximum resident set size (KB) = 667316 -Test 060 rrfs_conus13km_hrrr_warm PASS +Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rrfs_conus13km_radar_tten_warm -Checking test 061 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rrfs_conus13km_radar_tten_warm +Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2405,15 +2140,15 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 171.807376 - 0: The maximum resident set size (KB) = 670052 + 0: The total amount of wall time = 166.490969 + 0: The maximum resident set size (KB) = 674092 -Test 061 rrfs_conus13km_radar_tten_warm PASS +Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_rrtmgp -Checking test 062 control_rrtmgp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_rrtmgp +Checking test 057 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2423,15 +2158,15 @@ Checking test 062 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 200.387410 - 0: The maximum resident set size (KB) = 610268 + 0: The total amount of wall time = 196.568404 + 0: The maximum resident set size (KB) = 610344 -Test 062 control_rrtmgp PASS +Test 057 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_rrtmgp_c192 -Checking test 063 control_rrtmgp_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_rrtmgp_c192 +Checking test 058 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2441,15 +2176,15 @@ Checking test 063 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.194394 - 0: The maximum resident set size (KB) = 814752 + 0: The total amount of wall time = 527.077030 + 0: The maximum resident set size (KB) = 813072 -Test 063 control_rrtmgp_c192 PASS +Test 058 control_rrtmgp_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_csawmg -Checking test 064 control_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_csawmg +Checking test 059 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2459,15 +2194,15 @@ Checking test 064 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 322.282894 - 0: The maximum resident set size (KB) = 537116 + 0: The total amount of wall time = 316.324064 + 0: The maximum resident set size (KB) = 535548 -Test 064 control_csawmg PASS +Test 059 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_csawmgt -Checking test 065 control_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_csawmgt +Checking test 060 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2477,15 +2212,15 @@ Checking test 065 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 320.138700 - 0: The maximum resident set size (KB) = 535704 + 0: The total amount of wall time = 325.221545 + 0: The maximum resident set size (KB) = 538748 -Test 065 control_csawmgt PASS +Test 060 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_flake -Checking test 066 control_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_flake +Checking test 061 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2495,15 +2230,15 @@ Checking test 066 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 229.705052 - 0: The maximum resident set size (KB) = 535376 + 0: The total amount of wall time = 236.089697 + 0: The maximum resident set size (KB) = 536636 -Test 066 control_flake PASS +Test 061 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_ras -Checking test 067 control_ras results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_ras +Checking test 062 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2513,15 +2248,15 @@ Checking test 067 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 172.198861 - 0: The maximum resident set size (KB) = 499940 + 0: The total amount of wall time = 173.989912 + 0: The maximum resident set size (KB) = 501032 -Test 067 control_ras PASS +Test 062 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_thompson -Checking test 068 control_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_thompson +Checking test 063 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2531,15 +2266,15 @@ Checking test 068 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 218.676102 - 0: The maximum resident set size (KB) = 852628 + 0: The total amount of wall time = 211.306122 + 0: The maximum resident set size (KB) = 853588 -Test 068 control_thompson PASS +Test 063 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_thompson_no_aero -Checking test 069 control_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_thompson_no_aero +Checking test 064 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2549,55 +2284,55 @@ Checking test 069 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 213.182544 - 0: The maximum resident set size (KB) = 845136 + 0: The total amount of wall time = 207.272206 + 0: The maximum resident set size (KB) = 840272 -Test 069 control_thompson_no_aero PASS +Test 064 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_wam_repro -Checking test 070 control_wam results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wam_repro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_wam_repro +Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 119.449955 - 0: The maximum resident set size (KB) = 232196 + 0: The total amount of wall time = 115.965545 + 0: The maximum resident set size (KB) = 233564 -Test 070 control_wam PASS +Test 065 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_debug -Checking test 071 control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_debug +Checking test 066 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.386009 - 0: The maximum resident set size (KB) = 629404 + 0: The total amount of wall time = 140.725938 + 0: The maximum resident set size (KB) = 632780 -Test 071 control_debug PASS +Test 066 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_2threads_debug -Checking test 072 control_2threads_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_2threads_debug +Checking test 067 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.825206 - 0: The maximum resident set size (KB) = 681768 + 0: The total amount of wall time = 214.520746 + 0: The maximum resident set size (KB) = 684468 -Test 072 control_2threads_debug PASS +Test 067 control_2threads_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_CubedSphereGrid_debug -Checking test 073 control_CubedSphereGrid_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_CubedSphereGrid_debug +Checking test 068 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2623,459 +2358,459 @@ Checking test 073 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 157.282427 - 0: The maximum resident set size (KB) = 635236 + 0: The total amount of wall time = 158.240484 + 0: The maximum resident set size (KB) = 633480 -Test 073 control_CubedSphereGrid_debug PASS +Test 068 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_wrtGauss_netcdf_parallel_debug -Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_wrtGauss_netcdf_parallel_debug +Checking test 069 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.203460 - 0: The maximum resident set size (KB) = 632064 + 0: The total amount of wall time = 144.471236 + 0: The maximum resident set size (KB) = 633660 -Test 074 control_wrtGauss_netcdf_parallel_debug PASS +Test 069 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_stochy_debug -Checking test 075 control_stochy_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_stochy_debug +Checking test 070 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 = 166.087588 - 0: The maximum resident set size (KB) = 638520 + 0: The total amount of wall time = 163.815644 + 0: The maximum resident set size (KB) = 637940 -Test 075 control_stochy_debug PASS +Test 070 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_lndp_debug -Checking test 076 control_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_lndp_debug +Checking test 071 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.095598 - 0: The maximum resident set size (KB) = 640780 + 0: The total amount of wall time = 148.530620 + 0: The maximum resident set size (KB) = 636996 -Test 076 control_lndp_debug PASS +Test 071 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_rrtmgp_debug -Checking test 077 control_rrtmgp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_rrtmgp_debug +Checking test 072 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.796471 - 0: The maximum resident set size (KB) = 750284 + 0: The total amount of wall time = 157.980566 + 0: The maximum resident set size (KB) = 751496 -Test 077 control_rrtmgp_debug PASS +Test 072 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_csawmg_debug -Checking test 078 control_csawmg_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_csawmg_debug +Checking test 073 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 = 228.000084 - 0: The maximum resident set size (KB) = 673760 + 0: The total amount of wall time = 227.797282 + 0: The maximum resident set size (KB) = 679992 -Test 078 control_csawmg_debug PASS +Test 073 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_csawmgt_debug -Checking test 079 control_csawmgt_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_csawmgt_debug +Checking test 074 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 = 223.569965 - 0: The maximum resident set size (KB) = 674576 + 0: The total amount of wall time = 223.295090 + 0: The maximum resident set size (KB) = 678128 -Test 079 control_csawmgt_debug PASS +Test 074 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_ras_debug -Checking test 080 control_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_ras_debug +Checking test 075 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 = 152.006571 - 0: The maximum resident set size (KB) = 641268 + 0: The total amount of wall time = 149.444543 + 0: The maximum resident set size (KB) = 644460 -Test 080 control_ras_debug PASS +Test 075 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_diag_debug -Checking test 081 control_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_diag_debug +Checking test 076 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 = 155.087526 - 0: The maximum resident set size (KB) = 687120 + 0: The total amount of wall time = 156.650321 + 0: The maximum resident set size (KB) = 690440 -Test 081 control_diag_debug PASS Tries: 2 +Test 076 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_debug_p8 -Checking test 082 control_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_debug_p8 +Checking test 077 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 = 158.252937 - 0: The maximum resident set size (KB) = 1019104 + 0: The total amount of wall time = 174.126709 + 0: The maximum resident set size (KB) = 1138108 -Test 082 control_debug_p8 PASS +Test 077 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_thompson_debug -Checking test 083 control_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_thompson_debug +Checking test 078 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.241357 - 0: The maximum resident set size (KB) = 998376 + 0: The total amount of wall time = 167.367962 + 0: The maximum resident set size (KB) = 994656 -Test 083 control_thompson_debug PASS +Test 078 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_thompson_no_aero_debug -Checking test 084 control_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_thompson_no_aero_debug +Checking test 079 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.649360 - 0: The maximum resident set size (KB) = 988116 + 0: The total amount of wall time = 163.205226 + 0: The maximum resident set size (KB) = 985668 -Test 084 control_thompson_no_aero_debug PASS +Test 079 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_thompson_extdiag_debug -Checking test 085 control_thompson_extdiag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_thompson_extdiag_debug +Checking test 080 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.231764 - 0: The maximum resident set size (KB) = 1025444 + 0: The total amount of wall time = 180.282702 + 0: The maximum resident set size (KB) = 1024240 -Test 085 control_thompson_extdiag_debug PASS +Test 080 control_thompson_extdiag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_thompson_progcld_thompson_debug -Checking test 086 control_thompson_progcld_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_thompson_progcld_thompson_debug +Checking test 081 control_thompson_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 = 167.137299 - 0: The maximum resident set size (KB) = 997628 + 0: The total amount of wall time = 169.870761 + 0: The maximum resident set size (KB) = 998288 -Test 086 control_thompson_progcld_thompson_debug PASS +Test 081 control_thompson_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/regional_debug -Checking test 087 regional_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/regional_debug +Checking test 082 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 = 236.446248 - 0: The maximum resident set size (KB) = 606320 + 0: The total amount of wall time = 234.923635 + 0: The maximum resident set size (KB) = 606812 -Test 087 regional_debug PASS +Test 082 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_control_debug -Checking test 088 rap_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_control_debug +Checking test 083 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 = 261.824288 - 0: The maximum resident set size (KB) = 999928 + 0: The total amount of wall time = 262.418568 + 0: The maximum resident set size (KB) = 999964 -Test 088 rap_control_debug PASS +Test 083 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_unified_drag_suite_debug -Checking test 089 rap_unified_drag_suite_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_unified_drag_suite_debug +Checking test 084 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 = 264.983837 - 0: The maximum resident set size (KB) = 1004244 + 0: The total amount of wall time = 264.270434 + 0: The maximum resident set size (KB) = 1000832 -Test 089 rap_unified_drag_suite_debug PASS +Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_diag_debug -Checking test 090 rap_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_diag_debug +Checking test 085 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 = 274.069717 - 0: The maximum resident set size (KB) = 1081104 + 0: The total amount of wall time = 275.165568 + 0: The maximum resident set size (KB) = 1082200 -Test 090 rap_diag_debug PASS +Test 085 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_cires_ugwp_debug -Checking test 091 rap_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_cires_ugwp_debug +Checking test 086 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 = 265.646072 - 0: The maximum resident set size (KB) = 1000392 + 0: The total amount of wall time = 267.965603 + 0: The maximum resident set size (KB) = 1001692 -Test 091 rap_cires_ugwp_debug PASS +Test 086 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_unified_ugwp_debug -Checking test 092 rap_unified_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_unified_ugwp_debug +Checking test 087 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 = 265.046573 - 0: The maximum resident set size (KB) = 998188 + 0: The total amount of wall time = 262.622023 + 0: The maximum resident set size (KB) = 997828 -Test 092 rap_unified_ugwp_debug PASS +Test 087 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_lndp_debug -Checking test 093 rap_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_lndp_debug +Checking test 088 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 = 265.701689 - 0: The maximum resident set size (KB) = 1000348 + 0: The total amount of wall time = 266.039525 + 0: The maximum resident set size (KB) = 1003292 -Test 093 rap_lndp_debug PASS +Test 088 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_flake_debug -Checking test 094 rap_flake_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_flake_debug +Checking test 089 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 = 259.383638 - 0: The maximum resident set size (KB) = 999284 + 0: The total amount of wall time = 256.926053 + 0: The maximum resident set size (KB) = 1001428 -Test 094 rap_flake_debug PASS +Test 089 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_progcld_thompson_debug -Checking test 095 rap_progcld_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_progcld_thompson_debug +Checking test 090 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 = 257.532620 - 0: The maximum resident set size (KB) = 996660 + 0: The total amount of wall time = 258.402081 + 0: The maximum resident set size (KB) = 998628 -Test 095 rap_progcld_thompson_debug PASS +Test 090 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_noah_debug -Checking test 096 rap_noah_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_noah_debug +Checking test 091 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 = 259.854234 - 0: The maximum resident set size (KB) = 997528 + 0: The total amount of wall time = 253.547156 + 0: The maximum resident set size (KB) = 996368 -Test 096 rap_noah_debug PASS +Test 091 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_rrtmgp_debug -Checking test 097 rap_rrtmgp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_rrtmgp_debug +Checking test 092 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 450.392539 - 0: The maximum resident set size (KB) = 1121384 + 0: The total amount of wall time = 442.462405 + 0: The maximum resident set size (KB) = 1124468 -Test 097 rap_rrtmgp_debug PASS +Test 092 rap_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_sfcdiff_debug -Checking test 098 rap_sfcdiff_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_sfcdiff_debug +Checking test 093 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 = 261.861999 - 0: The maximum resident set size (KB) = 998164 + 0: The total amount of wall time = 261.284752 + 0: The maximum resident set size (KB) = 996004 -Test 098 rap_sfcdiff_debug PASS +Test 093 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 094 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 = 432.709496 - 0: The maximum resident set size (KB) = 1001200 + 0: The total amount of wall time = 426.478799 + 0: The maximum resident set size (KB) = 1001032 -Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/rrfs_v1beta_debug -Checking test 100 rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/rrfs_v1beta_debug +Checking test 095 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 = 259.410765 - 0: The maximum resident set size (KB) = 994064 + 0: The total amount of wall time = 260.223265 + 0: The maximum resident set size (KB) = 994968 -Test 100 rrfs_v1beta_debug PASS +Test 095 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_wam_debug -Checking test 101 control_wam_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_wam_debug +Checking test 096 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 288.597479 - 0: The maximum resident set size (KB) = 256668 + 0: The total amount of wall time = 271.576974 + 0: The maximum resident set size (KB) = 258296 -Test 101 control_wam_debug PASS +Test 096 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_atm -Checking test 102 hafs_regional_atm results .... - Comparing atmf006.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hafs_regional_atm +Checking test 097 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 288.035878 - 0: The maximum resident set size (KB) = 707136 + 0: The total amount of wall time = 278.604954 + 0: The maximum resident set size (KB) = 708148 -Test 102 hafs_regional_atm PASS +Test 097 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_atm_thompson_gfdlsf -Checking test 103 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hafs_regional_atm_thompson_gfdlsf +Checking test 098 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 331.736160 - 0: The maximum resident set size (KB) = 1065404 + 0: The total amount of wall time = 334.035341 + 0: The maximum resident set size (KB) = 1066664 -Test 103 hafs_regional_atm_thompson_gfdlsf PASS +Test 098 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_atm_ocn -Checking test 104 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hafs_regional_atm_ocn +Checking test 099 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 381.569759 - 0: The maximum resident set size (KB) = 725828 + 0: The total amount of wall time = 367.777749 + 0: The maximum resident set size (KB) = 723384 -Test 104 hafs_regional_atm_ocn PASS +Test 099 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_atm_wav -Checking test 105 hafs_regional_atm_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hafs_regional_atm_wav +Checking test 100 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 847.118424 - 0: The maximum resident set size (KB) = 725500 + 0: The total amount of wall time = 817.093042 + 0: The maximum resident set size (KB) = 727000 -Test 105 hafs_regional_atm_wav PASS +Test 100 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_atm_ocn_wav -Checking test 106 hafs_regional_atm_ocn_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hafs_regional_atm_ocn_wav +Checking test 101 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3083,29 +2818,29 @@ Checking test 106 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 923.214259 - 0: The maximum resident set size (KB) = 728364 + 0: The total amount of wall time = 904.190009 + 0: The maximum resident set size (KB) = 722760 -Test 106 hafs_regional_atm_ocn_wav PASS +Test 101 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_1nest_atm -Checking test 107 hafs_regional_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hafs_regional_1nest_atm +Checking test 102 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 = 424.137645 - 0: The maximum resident set size (KB) = 321672 + 0: The total amount of wall time = 432.994610 + 0: The maximum resident set size (KB) = 319872 -Test 107 hafs_regional_1nest_atm PASS +Test 102 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_telescopic_2nests_atm -Checking test 108 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hafs_regional_telescopic_2nests_atm +Checking test 103 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3113,29 +2848,29 @@ Checking test 108 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 = 441.406153 - 0: The maximum resident set size (KB) = 330416 + 0: The total amount of wall time = 445.484036 + 0: The maximum resident set size (KB) = 330424 -Test 108 hafs_regional_telescopic_2nests_atm PASS +Test 103 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_global_1nest_atm -Checking test 109 hafs_global_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hafs_global_1nest_atm +Checking test 104 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 = 195.625208 - 0: The maximum resident set size (KB) = 205080 + 0: The total amount of wall time = 198.335456 + 0: The maximum resident set size (KB) = 205032 -Test 109 hafs_global_1nest_atm PASS +Test 104 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_global_multiple_4nests_atm -Checking test 110 hafs_global_multiple_4nests_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hafs_global_multiple_4nests_atm +Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3145,151 +2880,151 @@ Checking test 110 hafs_global_multiple_4nests_atm results .... Comparing sfc.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 536.178251 - 0: The maximum resident set size (KB) = 279364 + 0: The total amount of wall time = 539.111964 + 0: The maximum resident set size (KB) = 279716 -Test 110 hafs_global_multiple_4nests_atm PASS +Test 105 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_docn -Checking test 111 hafs_regional_docn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hafs_regional_docn +Checking test 106 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.740127 - 0: The maximum resident set size (KB) = 723352 + 0: The total amount of wall time = 363.367786 + 0: The maximum resident set size (KB) = 723640 -Test 111 hafs_regional_docn PASS +Test 106 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_docn_oisst -Checking test 112 hafs_regional_docn_oisst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hafs_regional_docn_oisst +Checking test 107 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.120307 - 0: The maximum resident set size (KB) = 727604 + 0: The total amount of wall time = 353.417859 + 0: The maximum resident set size (KB) = 724176 -Test 112 hafs_regional_docn_oisst PASS +Test 107 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/hafs_regional_datm_cdeps -Checking test 113 hafs_regional_datm_cdeps results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/hafs_regional_datm_cdeps +Checking test 108 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 = 943.798737 - 0: The maximum resident set size (KB) = 854320 + 0: The total amount of wall time = 941.575518 + 0: The maximum resident set size (KB) = 852192 -Test 113 hafs_regional_datm_cdeps PASS +Test 108 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_control_cfsr -Checking test 114 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_control_cfsr +Checking test 109 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.503322 - 0: The maximum resident set size (KB) = 717100 + 0: The total amount of wall time = 141.271334 + 0: The maximum resident set size (KB) = 718488 -Test 114 datm_cdeps_control_cfsr PASS +Test 109 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_restart_cfsr -Checking test 115 datm_cdeps_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_restart_cfsr +Checking test 110 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 83.441899 - 0: The maximum resident set size (KB) = 716284 + 0: The total amount of wall time = 84.702986 + 0: The maximum resident set size (KB) = 717008 -Test 115 datm_cdeps_restart_cfsr PASS +Test 110 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_control_gefs -Checking test 116 datm_cdeps_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_control_gefs +Checking test 111 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 137.339841 - 0: The maximum resident set size (KB) = 618776 + 0: The total amount of wall time = 139.053489 + 0: The maximum resident set size (KB) = 618228 -Test 116 datm_cdeps_control_gefs PASS +Test 111 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_iau_gefs -Checking test 117 datm_cdeps_iau_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_iau_gefs +Checking test 112 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.324199 - 0: The maximum resident set size (KB) = 618164 + 0: The total amount of wall time = 140.556672 + 0: The maximum resident set size (KB) = 617752 -Test 117 datm_cdeps_iau_gefs PASS +Test 112 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_stochy_gefs -Checking test 118 datm_cdeps_stochy_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_stochy_gefs +Checking test 113 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 138.603369 - 0: The maximum resident set size (KB) = 618808 + 0: The total amount of wall time = 143.981383 + 0: The maximum resident set size (KB) = 618636 -Test 118 datm_cdeps_stochy_gefs PASS +Test 113 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_bulk_cfsr -Checking test 119 datm_cdeps_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_bulk_cfsr +Checking test 114 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.647230 - 0: The maximum resident set size (KB) = 717984 + 0: The total amount of wall time = 142.190137 + 0: The maximum resident set size (KB) = 737996 -Test 119 datm_cdeps_bulk_cfsr PASS +Test 114 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_bulk_gefs -Checking test 120 datm_cdeps_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_bulk_gefs +Checking test 115 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 137.693893 - 0: The maximum resident set size (KB) = 618980 + 0: The total amount of wall time = 137.201354 + 0: The maximum resident set size (KB) = 619340 -Test 120 datm_cdeps_bulk_gefs PASS +Test 115 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_mx025_cfsr -Checking test 121 datm_cdeps_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_mx025_cfsr +Checking test 116 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3297,15 +3032,15 @@ Checking test 121 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 = 303.764881 - 0: The maximum resident set size (KB) = 564856 + 0: The total amount of wall time = 309.914601 + 0: The maximum resident set size (KB) = 561336 -Test 121 datm_cdeps_mx025_cfsr PASS +Test 116 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_mx025_gefs -Checking test 122 datm_cdeps_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_mx025_gefs +Checking test 117 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3313,65 +3048,65 @@ Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 301.182670 - 0: The maximum resident set size (KB) = 534700 + 0: The total amount of wall time = 305.573919 + 0: The maximum resident set size (KB) = 532764 -Test 122 datm_cdeps_mx025_gefs PASS +Test 117 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_multiple_files_cfsr -Checking test 123 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_multiple_files_cfsr +Checking test 118 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 = 141.536715 - 0: The maximum resident set size (KB) = 717660 + 0: The total amount of wall time = 141.644023 + 0: The maximum resident set size (KB) = 718108 -Test 123 datm_cdeps_multiple_files_cfsr PASS +Test 118 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_3072x1536_cfsr -Checking test 124 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_3072x1536_cfsr +Checking test 119 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 192.133892 - 0: The maximum resident set size (KB) = 1831712 + 0: The total amount of wall time = 191.893663 + 0: The maximum resident set size (KB) = 1828032 -Test 124 datm_cdeps_3072x1536_cfsr PASS +Test 119 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_gfs -Checking test 125 datm_cdeps_gfs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_gfs +Checking test 120 datm_cdeps_gfs results .... Comparing RESTART/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 = 193.858180 - 0: The maximum resident set size (KB) = 1832280 + 0: The total amount of wall time = 195.007325 + 0: The maximum resident set size (KB) = 1889796 -Test 125 datm_cdeps_gfs PASS +Test 120 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/datm_cdeps_debug_cfsr -Checking test 126 datm_cdeps_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/datm_cdeps_debug_cfsr +Checking test 121 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 441.359343 - 0: The maximum resident set size (KB) = 724168 + 0: The total amount of wall time = 436.248348 + 0: The maximum resident set size (KB) = 724160 -Test 126 datm_cdeps_debug_cfsr PASS +Test 121 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_atmwav -Checking test 127 control_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_atmwav +Checking test 122 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3414,15 +3149,15 @@ Checking test 127 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 80.649752 - 0: The maximum resident set size (KB) = 492000 + 0: The total amount of wall time = 80.308363 + 0: The maximum resident set size (KB) = 489968 -Test 127 control_atmwav PASS +Test 122 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_c384gdas_wav -Checking test 128 control_c384gdas_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384gdas_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_c384gdas_wav +Checking test 123 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3467,15 +3202,15 @@ Checking test 128 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 678.474992 - 0: The maximum resident set size (KB) = 1049184 + 0: The total amount of wall time = 676.738401 + 0: The maximum resident set size (KB) = 1048064 -Test 128 control_c384gdas_wav PASS +Test 123 control_c384gdas_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_atm_aerosols -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17714/control_atm_aerosols -Checking test 129 control_atm_aerosols results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_atm_aerosols +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12895/control_atm_aerosols +Checking test 124 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3521,12 +3256,12 @@ Checking test 129 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.555077 - 0: The maximum resident set size (KB) = 912584 + 0: The total amount of wall time = 282.620881 + 0: The maximum resident set size (KB) = 911664 -Test 129 control_atm_aerosols PASS +Test 124 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 5 23:53:03 UTC 2022 -Elapsed time: 00h:58m:23s. Have a nice day! +Thu Apr 7 02:02:13 UTC 2022 +Elapsed time: 01h:08m:28s. Have a nice day! From e7fb469cc26dc4916d8a70a6e58a069707e6ff0f Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 7 Apr 2022 02:41:28 +0000 Subject: [PATCH 47/57] [AutoRT] gaea.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_gaea.intel.log | 1753 +++++++++++--------------- 1 file changed, 744 insertions(+), 1009 deletions(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index a4bd4ca669..b48e9d3f16 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,24 +1,24 @@ -Tue Apr 5 14:38:12 EDT 2022 +Wed Apr 6 21:13:35 EDT 2022 Start Regression test -Compile 001 elapsed time 545 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 238 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 423 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 221 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 196 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 209 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 456 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 431 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 254 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 126 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 396 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_control_p8 +Compile 001 elapsed time 587 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 242 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 389 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 417 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 373 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 224 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 195 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 196 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 425 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 445 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 257 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 134 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 407 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 391.988947 - 0: The maximum resident set size (KB) = 1048464 + 0: The total amount of wall time = 428.672736 + 0: The maximum resident set size (KB) = 1183968 Test 001 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 517.001451 - 0: The maximum resident set size (KB) = 1463964 + 0: The total amount of wall time = 611.478002 + 0: The maximum resident set size (KB) = 1642644 Test 002 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 382.409289 - 0: The maximum resident set size (KB) = 1202144 + 0: The total amount of wall time = 492.159909 + 0: The maximum resident set size (KB) = 1319756 Test 003 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -267,119 +267,15 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 355.426525 - 0: The maximum resident set size (KB) = 943192 + 0: The total amount of wall time = 352.412063 + 0: The maximum resident set size (KB) = 1066160 Test 004 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_bmark_p7 -Checking test 005 cpld_bmark_p7 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1031.320902 - 0: The maximum resident set size (KB) = 1160464 - -Test 005 cpld_bmark_p7 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_bmark_p7_rrtmgp -Checking test 006 cpld_bmark_p7_rrtmgp results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1077.543296 - 0: The maximum resident set size (KB) = 1284376 - -Test 006 cpld_bmark_p7_rrtmgp PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_bmark_p8 -Checking test 007 cpld_bmark_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/cpld_bmark_p8 +Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -424,68 +320,15 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1222.984812 - 0: The maximum resident set size (KB) = 2709792 + 0: The total amount of wall time = 1308.014776 + 0: The maximum resident set size (KB) = 2900904 -Test 007 cpld_bmark_p8 PASS +Test 005 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_bmark_p8_rrtmgp -Checking test 008 cpld_bmark_p8_rrtmgp results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1347.985106 - 0: The maximum resident set size (KB) = 2901728 - -Test 008 cpld_bmark_p8_rrtmgp PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_control_c96_p8 -Checking test 009 cpld_control_c96_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c96_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/cpld_control_c96_p8 +Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -547,15 +390,15 @@ Checking test 009 cpld_control_c96_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 = 373.852979 - 0: The maximum resident set size (KB) = 1048012 + 0: The total amount of wall time = 410.379105 + 0: The maximum resident set size (KB) = 1183072 -Test 009 cpld_control_c96_p8 PASS +Test 006 cpld_control_c96_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_restart_c96_p8 -Checking test 010 cpld_restart_c96_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c96_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/cpld_restart_c96_p8 +Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -605,15 +448,15 @@ Checking test 010 cpld_restart_c96_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 = 233.943094 - 0: The maximum resident set size (KB) = 1018472 + 0: The total amount of wall time = 273.705921 + 0: The maximum resident set size (KB) = 1155412 -Test 010 cpld_restart_c96_p8 PASS +Test 007 cpld_restart_c96_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/cpld_control_c192_p8 +Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -663,15 +506,15 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1731.767310 - 0: The maximum resident set size (KB) = 1457544 + 0: The total amount of wall time = 1966.449157 + 0: The maximum resident set size (KB) = 1569532 -Test 011 cpld_control_c192_p8 PASS +Test 008 cpld_control_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/cpld_restart_c192_p8 +Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -721,15 +564,15 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1158.765082 - 0: The maximum resident set size (KB) = 1647492 + 0: The total amount of wall time = 1310.706796 + 0: The maximum resident set size (KB) = 1798152 -Test 012 cpld_restart_c192_p8 PASS +Test 009 cpld_restart_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_control_c384_p8 -Checking test 013 cpld_control_c384_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c384_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/cpld_control_c384_p8 +Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -772,15 +615,15 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1432.347760 - 0: The maximum resident set size (KB) = 2734416 + 0: The total amount of wall time = 1519.419729 + 0: The maximum resident set size (KB) = 2903012 -Test 013 cpld_control_c384_p8 PASS +Test 010 cpld_control_c384_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_restart_c384_p8 -Checking test 014 cpld_restart_c384_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c384_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/cpld_restart_c384_p8 +Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -823,15 +666,15 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 892.654938 - 0: The maximum resident set size (KB) = 2706084 + 0: The total amount of wall time = 936.160071 + 0: The maximum resident set size (KB) = 2948656 -Test 014 cpld_restart_c384_p8 PASS +Test 011 cpld_restart_c384_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/cpld_debug_p8 +Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -881,15 +724,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 985.991422 - 0: The maximum resident set size (KB) = 1147464 + 0: The total amount of wall time = 1082.468797 + 0: The maximum resident set size (KB) = 1313728 -Test 015 cpld_debug_p8 PASS +Test 012 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control -Checking test 016 control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control +Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -935,15 +778,15 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 134.873286 - 0: The maximum resident set size (KB) = 435148 + 0: The total amount of wall time = 140.293291 + 0: The maximum resident set size (KB) = 435180 -Test 016 control PASS +Test 013 control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_decomp -Checking test 017 control_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_decomp +Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -985,29 +828,29 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 141.149538 - 0: The maximum resident set size (KB) = 431900 + 0: The total amount of wall time = 140.695581 + 0: The maximum resident set size (KB) = 431876 -Test 017 control_decomp PASS +Test 014 control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_2dwrtdecomp -Checking test 018 control_2dwrtdecomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_2dwrtdecomp +Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 158.614113 - 0: The maximum resident set size (KB) = 435300 + 0: The total amount of wall time = 129.040851 + 0: The maximum resident set size (KB) = 434204 -Test 018 control_2dwrtdecomp PASS +Test 015 control_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_2threads -Checking test 019 control_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_2threads +Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1049,15 +892,15 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.157753 - 0: The maximum resident set size (KB) = 485924 + 0: The total amount of wall time = 175.612816 + 0: The maximum resident set size (KB) = 487856 -Test 019 control_2threads PASS +Test 016 control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_restart -Checking test 020 control_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_restart +Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1095,15 +938,15 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 72.088988 - 0: The maximum resident set size (KB) = 170640 + 0: The total amount of wall time = 72.270551 + 0: The maximum resident set size (KB) = 170340 -Test 020 control_restart PASS +Test 017 control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_fhzero -Checking test 021 control_fhzero results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_fhzero +Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1145,15 +988,15 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.039121 - 0: The maximum resident set size (KB) = 435212 + 0: The total amount of wall time = 130.092947 + 0: The maximum resident set size (KB) = 435052 -Test 021 control_fhzero PASS +Test 018 control_fhzero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1179,15 +1022,15 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 157.157455 - 0: The maximum resident set size (KB) = 435000 + 0: The total amount of wall time = 130.034649 + 0: The maximum resident set size (KB) = 434988 -Test 022 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1197,15 +1040,15 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.848865 - 0: The maximum resident set size (KB) = 435324 + 0: The total amount of wall time = 132.132424 + 0: The maximum resident set size (KB) = 434144 -Test 023 control_latlon PASS +Test 020 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1215,15 +1058,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.536571 - 0: The maximum resident set size (KB) = 435120 + 0: The total amount of wall time = 138.571529 + 0: The maximum resident set size (KB) = 435160 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1261,15 +1104,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 412.436350 -0: The maximum resident set size (KB) = 625612 +0: The total amount of wall time = 367.654504 +0: The maximum resident set size (KB) = 623984 -Test 025 control_c48 PASS +Test 022 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1279,15 +1122,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 585.679434 - 0: The maximum resident set size (KB) = 535252 + 0: The total amount of wall time = 555.048895 + 0: The maximum resident set size (KB) = 535292 -Test 026 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1297,15 +1140,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 961.126827 - 0: The maximum resident set size (KB) = 792264 + 0: The total amount of wall time = 965.629415 + 0: The maximum resident set size (KB) = 792532 -Test 027 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1347,15 +1190,15 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 875.841285 - 0: The maximum resident set size (KB) = 939824 + 0: The total amount of wall time = 860.734897 + 0: The maximum resident set size (KB) = 939772 -Test 028 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1365,29 +1208,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.879976 - 0: The maximum resident set size (KB) = 437344 + 0: The total amount of wall time = 87.868410 + 0: The maximum resident set size (KB) = 437420 -Test 029 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.920331 - 0: The maximum resident set size (KB) = 187176 + 0: The total amount of wall time = 49.518274 + 0: The maximum resident set size (KB) = 187876 -Test 030 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1397,15 +1240,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 106.778682 - 0: The maximum resident set size (KB) = 439264 + 0: The total amount of wall time = 79.929836 + 0: The maximum resident set size (KB) = 439360 -Test 031 control_lndp PASS +Test 028 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1419,15 +1262,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 159.631682 - 0: The maximum resident set size (KB) = 435324 + 0: The total amount of wall time = 152.528164 + 0: The maximum resident set size (KB) = 434048 -Test 032 control_iovr4 PASS +Test 029 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,15 +1284,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.175481 - 0: The maximum resident set size (KB) = 435336 + 0: The total amount of wall time = 134.758722 + 0: The maximum resident set size (KB) = 434072 -Test 033 control_iovr5 PASS +Test 030 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1495,15 +1338,15 @@ Checking test 034 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.174951 - 0: The maximum resident set size (KB) = 821680 + 0: The total amount of wall time = 215.699270 + 0: The maximum resident set size (KB) = 928880 -Test 034 control_p8 PASS +Test 031 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_restart_p8 -Checking test 035 control_restart_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_restart_p8 +Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1541,15 +1384,15 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 113.129820 - 0: The maximum resident set size (KB) = 557888 + 0: The total amount of wall time = 160.210436 + 0: The maximum resident set size (KB) = 711320 -Test 035 control_restart_p8 PASS +Test 032 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_decomp_p8 -Checking test 036 control_decomp_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_decomp_p8 +Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1591,15 +1434,15 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.391803 - 0: The maximum resident set size (KB) = 819448 + 0: The total amount of wall time = 221.137440 + 0: The maximum resident set size (KB) = 924216 -Test 036 control_decomp_p8 PASS +Test 033 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_2threads_p8 -Checking test 037 control_2threads_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_2threads_p8 +Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1641,123 +1484,15 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.224507 - 0: The maximum resident set size (KB) = 897212 - -Test 037 control_2threads_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p7_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_p7_rrtmgp -Checking test 038 control_p7_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 229.261077 - 0: The maximum resident set size (KB) = 583412 - -Test 038 control_p7_rrtmgp PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_p8_rrtmgp -Checking test 039 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 236.784900 - 0: The maximum resident set size (KB) = 911980 + 0: The total amount of wall time = 311.970967 + 0: The maximum resident set size (KB) = 1079708 -Test 039 control_p8_rrtmgp PASS +Test 034 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_control -Checking test 040 regional_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/regional_control +Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1767,58 +1502,58 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 347.996586 - 0: The maximum resident set size (KB) = 541080 + 0: The total amount of wall time = 374.386701 + 0: The maximum resident set size (KB) = 541116 -Test 040 regional_control PASS +Test 035 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_restart -Checking test 041 regional_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/regional_restart +Checking test 036 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 211.003568 - 0: The maximum resident set size (KB) = 539892 + 0: The total amount of wall time = 226.073110 + 0: The maximum resident set size (KB) = 539464 -Test 041 regional_restart PASS +Test 036 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_control_2dwrtdecomp -Checking test 042 regional_control_2dwrtdecomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/regional_control_2dwrtdecomp +Checking test 037 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 344.413788 - 0: The maximum resident set size (KB) = 540952 + 0: The total amount of wall time = 343.858030 + 0: The maximum resident set size (KB) = 541096 -Test 042 regional_control_2dwrtdecomp PASS +Test 037 regional_control_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_noquilt -Checking test 043 regional_noquilt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/regional_noquilt +Checking test 038 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 363.872473 - 0: The maximum resident set size (KB) = 547800 + 0: The total amount of wall time = 366.660846 + 0: The maximum resident set size (KB) = 547284 -Test 043 regional_noquilt PASS +Test 038 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_2threads -Checking test 044 regional_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/regional_2threads +Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1828,15 +1563,15 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 279.820388 - 0: The maximum resident set size (KB) = 542880 + 0: The total amount of wall time = 276.338981 + 0: The maximum resident set size (KB) = 542956 -Test 044 regional_2threads PASS +Test 039 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_hafs -Checking test 045 regional_hafs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/regional_hafs +Checking test 040 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1844,29 +1579,29 @@ Checking test 045 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 367.997205 - 0: The maximum resident set size (KB) = 542780 + 0: The total amount of wall time = 346.528173 + 0: The maximum resident set size (KB) = 542800 -Test 045 regional_hafs PASS +Test 040 regional_hafs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_netcdf_parallel -Checking test 046 regional_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/regional_netcdf_parallel +Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 379.099131 - 0: The maximum resident set size (KB) = 538164 + 0: The total amount of wall time = 351.821005 + 0: The maximum resident set size (KB) = 538012 -Test 046 regional_netcdf_parallel PASS +Test 041 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_RRTMGP -Checking test 047 regional_RRTMGP results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/regional_RRTMGP +Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1876,15 +1611,15 @@ Checking test 047 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 489.734378 - 0: The maximum resident set size (KB) = 659256 + 0: The total amount of wall time = 511.358278 + 0: The maximum resident set size (KB) = 659972 -Test 047 regional_RRTMGP PASS +Test 042 regional_RRTMGP PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_3km -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_3km -Checking test 048 regional_3km results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_3km +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1894,15 +1629,15 @@ Checking test 048 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 267.669225 - 0: The maximum resident set size (KB) = 570960 + 0: The total amount of wall time = 270.417900 + 0: The maximum resident set size (KB) = 571080 -Test 048 regional_3km PASS +Test 043 regional_3km PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_control -Checking test 049 rap_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1948,15 +1683,15 @@ Checking test 049 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 415.358568 - 0: The maximum resident set size (KB) = 802444 + 0: The total amount of wall time = 390.956669 + 0: The maximum resident set size (KB) = 802344 -Test 049 rap_control PASS +Test 044 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_rrtmgp -Checking test 050 rap_rrtmgp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2002,15 +1737,15 @@ Checking test 050 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 466.940606 - 0: The maximum resident set size (KB) = 922788 + 0: The total amount of wall time = 446.377991 + 0: The maximum resident set size (KB) = 922764 -Test 050 rap_rrtmgp PASS +Test 045 rap_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_spp_sppt_shum_skeb -Checking test 051 regional_spp_sppt_shum_skeb results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2020,15 +1755,15 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 344.034599 - 0: The maximum resident set size (KB) = 874056 + 0: The total amount of wall time = 349.113001 + 0: The maximum resident set size (KB) = 887564 -Test 051 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_2threads -Checking test 052 rap_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2074,15 +1809,15 @@ Checking test 052 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 536.943533 - 0: The maximum resident set size (KB) = 864024 + 0: The total amount of wall time = 513.383013 + 0: The maximum resident set size (KB) = 863828 -Test 052 rap_2threads PASS +Test 047 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_restart -Checking test 053 rap_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2120,15 +1855,15 @@ Checking test 053 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.631249 - 0: The maximum resident set size (KB) = 544256 + 0: The total amount of wall time = 223.652184 + 0: The maximum resident set size (KB) = 544360 -Test 053 rap_restart PASS +Test 048 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_sfcdiff -Checking test 054 rap_sfcdiff results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2174,15 +1909,15 @@ Checking test 054 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 414.586157 - 0: The maximum resident set size (KB) = 799384 + 0: The total amount of wall time = 392.045734 + 0: The maximum resident set size (KB) = 799452 -Test 054 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_sfcdiff_restart -Checking test 055 rap_sfcdiff_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2220,15 +1955,15 @@ Checking test 055 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.648499 - 0: The maximum resident set size (KB) = 545316 + 0: The total amount of wall time = 221.318591 + 0: The maximum resident set size (KB) = 545420 -Test 055 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hrrr_control -Checking test 056 hrrr_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2274,15 +2009,15 @@ Checking test 056 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.002100 - 0: The maximum resident set size (KB) = 798268 + 0: The total amount of wall time = 401.693877 + 0: The maximum resident set size (KB) = 798380 -Test 056 hrrr_control PASS +Test 051 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rrfs_v1beta -Checking test 057 rrfs_v1beta results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2328,15 +2063,15 @@ Checking test 057 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 410.397195 - 0: The maximum resident set size (KB) = 798260 + 0: The total amount of wall time = 410.942042 + 0: The maximum resident set size (KB) = 798152 -Test 057 rrfs_v1beta PASS +Test 052 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rrfs_v1nssl -Checking test 058 rrfs_v1nssl results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2350,15 +2085,15 @@ Checking test 058 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 509.723449 - 0: The maximum resident set size (KB) = 489072 + 0: The total amount of wall time = 484.901549 + 0: The maximum resident set size (KB) = 488980 -Test 058 rrfs_v1nssl PASS +Test 053 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rrfs_v1nssl_nohailnoccn -Checking test 059 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2372,15 +2107,15 @@ Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 470.005714 - 0: The maximum resident set size (KB) = 481460 + 0: The total amount of wall time = 468.062221 + 0: The maximum resident set size (KB) = 481016 -Test 059 rrfs_v1nssl_nohailnoccn PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rrfs_conus13km_hrrr_warm -Checking test 060 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rrfs_conus13km_hrrr_warm +Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2388,15 +2123,15 @@ Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 190.406260 - 0: The maximum resident set size (KB) = 613620 + 0: The total amount of wall time = 199.302502 + 0: The maximum resident set size (KB) = 613568 -Test 060 rrfs_conus13km_hrrr_warm PASS +Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rrfs_conus13km_radar_tten_warm -Checking test 061 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rrfs_conus13km_radar_tten_warm +Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2404,15 +2139,15 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 193.512317 - 0: The maximum resident set size (KB) = 615564 + 0: The total amount of wall time = 194.445906 + 0: The maximum resident set size (KB) = 615560 -Test 061 rrfs_conus13km_radar_tten_warm PASS +Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_rrtmgp -Checking test 062 control_rrtmgp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_rrtmgp +Checking test 057 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2422,15 +2157,15 @@ Checking test 062 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 246.981052 - 0: The maximum resident set size (KB) = 576012 + 0: The total amount of wall time = 243.406683 + 0: The maximum resident set size (KB) = 575972 -Test 062 control_rrtmgp PASS +Test 057 control_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_rrtmgp_c192 -Checking test 063 control_rrtmgp_c192 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_rrtmgp_c192 +Checking test 058 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2440,15 +2175,15 @@ Checking test 063 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 630.132495 - 0: The maximum resident set size (KB) = 776300 + 0: The total amount of wall time = 628.792960 + 0: The maximum resident set size (KB) = 776760 -Test 063 control_rrtmgp_c192 PASS +Test 058 control_rrtmgp_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_csawmgt -Checking test 064 control_csawmgt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_csawmgt +Checking test 059 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2458,15 +2193,15 @@ Checking test 064 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 372.880524 - 0: The maximum resident set size (KB) = 501660 + 0: The total amount of wall time = 375.248693 + 0: The maximum resident set size (KB) = 501628 -Test 064 control_csawmgt PASS +Test 059 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_flake -Checking test 065 control_flake results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_flake +Checking test 060 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2476,15 +2211,15 @@ Checking test 065 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 271.272519 - 0: The maximum resident set size (KB) = 505780 + 0: The total amount of wall time = 256.144507 + 0: The maximum resident set size (KB) = 505904 -Test 065 control_flake PASS +Test 060 control_flake PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_ras -Checking test 066 control_ras results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_ras +Checking test 061 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2494,15 +2229,15 @@ Checking test 066 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 210.889917 - 0: The maximum resident set size (KB) = 470320 + 0: The total amount of wall time = 211.490501 + 0: The maximum resident set size (KB) = 470312 -Test 066 control_ras PASS +Test 061 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_thompson -Checking test 067 control_thompson results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_thompson +Checking test 062 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2512,15 +2247,15 @@ Checking test 067 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 259.580274 - 0: The maximum resident set size (KB) = 818516 + 0: The total amount of wall time = 261.238249 + 0: The maximum resident set size (KB) = 818440 -Test 067 control_thompson PASS +Test 062 control_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_thompson_no_aero -Checking test 068 control_thompson_no_aero results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_thompson_no_aero +Checking test 063 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2530,55 +2265,55 @@ Checking test 068 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 244.747580 - 0: The maximum resident set size (KB) = 810988 + 0: The total amount of wall time = 248.679461 + 0: The maximum resident set size (KB) = 810992 -Test 068 control_thompson_no_aero PASS +Test 063 control_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_repro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_wam_repro -Checking test 069 control_wam results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wam_repro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_wam_repro +Checking test 064 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 121.474970 - 0: The maximum resident set size (KB) = 182128 + 0: The total amount of wall time = 147.765457 + 0: The maximum resident set size (KB) = 182224 -Test 069 control_wam PASS +Test 064 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_debug -Checking test 070 control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_debug +Checking test 065 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 = 151.219160 - 0: The maximum resident set size (KB) = 599376 + 0: The total amount of wall time = 149.179405 + 0: The maximum resident set size (KB) = 599448 -Test 070 control_debug PASS +Test 065 control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_2threads_debug -Checking test 071 control_2threads_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_2threads_debug +Checking test 066 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.535675 - 0: The maximum resident set size (KB) = 652040 + 0: The total amount of wall time = 256.955951 + 0: The maximum resident set size (KB) = 651892 -Test 071 control_2threads_debug PASS +Test 066 control_2threads_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_CubedSphereGrid_debug -Checking test 072 control_CubedSphereGrid_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_CubedSphereGrid_debug +Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2604,429 +2339,429 @@ Checking test 072 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 161.399510 - 0: The maximum resident set size (KB) = 598772 + 0: The total amount of wall time = 164.352672 + 0: The maximum resident set size (KB) = 599004 -Test 072 control_CubedSphereGrid_debug PASS +Test 067 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_wrtGauss_netcdf_parallel_debug -Checking test 073 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_wrtGauss_netcdf_parallel_debug +Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.258173 - 0: The maximum resident set size (KB) = 598768 + 0: The total amount of wall time = 159.983601 + 0: The maximum resident set size (KB) = 598632 -Test 073 control_wrtGauss_netcdf_parallel_debug PASS +Test 068 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_stochy_debug -Checking test 074 control_stochy_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_stochy_debug +Checking test 069 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 = 174.158628 - 0: The maximum resident set size (KB) = 603256 + 0: The total amount of wall time = 174.612711 + 0: The maximum resident set size (KB) = 603208 -Test 074 control_stochy_debug PASS +Test 069 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_lndp_debug -Checking test 075 control_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_lndp_debug +Checking test 070 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 = 155.439263 - 0: The maximum resident set size (KB) = 603232 + 0: The total amount of wall time = 158.202655 + 0: The maximum resident set size (KB) = 603300 -Test 075 control_lndp_debug PASS +Test 070 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_rrtmgp_debug -Checking test 076 control_rrtmgp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_rrtmgp_debug +Checking test 071 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.172136 - 0: The maximum resident set size (KB) = 719216 + 0: The total amount of wall time = 188.344995 + 0: The maximum resident set size (KB) = 719160 -Test 076 control_rrtmgp_debug PASS +Test 071 control_rrtmgp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_csawmg_debug -Checking test 077 control_csawmg_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_csawmg_debug +Checking test 072 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 = 253.470849 - 0: The maximum resident set size (KB) = 641132 + 0: The total amount of wall time = 253.189554 + 0: The maximum resident set size (KB) = 641128 -Test 077 control_csawmg_debug PASS +Test 072 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_csawmgt_debug -Checking test 078 control_csawmgt_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_csawmgt_debug +Checking test 073 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 = 249.649586 - 0: The maximum resident set size (KB) = 641300 + 0: The total amount of wall time = 248.289528 + 0: The maximum resident set size (KB) = 641280 -Test 078 control_csawmgt_debug PASS +Test 073 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_ras_debug -Checking test 079 control_ras_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_ras_debug +Checking test 074 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 = 155.944536 - 0: The maximum resident set size (KB) = 614884 + 0: The total amount of wall time = 155.238040 + 0: The maximum resident set size (KB) = 614360 -Test 079 control_ras_debug PASS +Test 074 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_diag_debug -Checking test 080 control_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_diag_debug +Checking test 075 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.426585 - 0: The maximum resident set size (KB) = 655956 + 0: The total amount of wall time = 158.100884 + 0: The maximum resident set size (KB) = 655808 -Test 080 control_diag_debug PASS +Test 075 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_debug_p8 -Checking test 081 control_debug_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_debug_p8 +Checking test 076 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 = 175.221572 - 0: The maximum resident set size (KB) = 987084 + 0: The total amount of wall time = 186.958153 + 0: The maximum resident set size (KB) = 1103084 -Test 081 control_debug_p8 PASS +Test 076 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_thompson_debug -Checking test 082 control_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_thompson_debug +Checking test 077 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.436394 - 0: The maximum resident set size (KB) = 960104 + 0: The total amount of wall time = 176.243730 + 0: The maximum resident set size (KB) = 960636 -Test 082 control_thompson_debug PASS +Test 077 control_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_thompson_no_aero_debug -Checking test 083 control_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_thompson_no_aero_debug +Checking test 078 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.426790 - 0: The maximum resident set size (KB) = 953824 + 0: The total amount of wall time = 171.589097 + 0: The maximum resident set size (KB) = 953736 -Test 083 control_thompson_no_aero_debug PASS +Test 078 control_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug_extdiag -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_thompson_extdiag_debug -Checking test 084 control_thompson_extdiag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_debug_extdiag +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_thompson_extdiag_debug +Checking test 079 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 189.972501 - 0: The maximum resident set size (KB) = 989140 + 0: The total amount of wall time = 184.460193 + 0: The maximum resident set size (KB) = 989188 -Test 084 control_thompson_extdiag_debug PASS +Test 079 control_thompson_extdiag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_thompson_progcld_thompson_debug -Checking test 085 control_thompson_progcld_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_thompson_progcld_thompson_debug +Checking test 080 control_thompson_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 = 180.978803 - 0: The maximum resident set size (KB) = 959940 + 0: The total amount of wall time = 178.069219 + 0: The maximum resident set size (KB) = 959932 -Test 085 control_thompson_progcld_thompson_debug PASS +Test 080 control_thompson_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/regional_debug -Checking test 086 regional_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/regional_debug +Checking test 081 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 = 259.280928 - 0: The maximum resident set size (KB) = 565984 + 0: The total amount of wall time = 256.510774 + 0: The maximum resident set size (KB) = 565908 -Test 086 regional_debug PASS +Test 081 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_control_debug -Checking test 087 rap_control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_control_debug +Checking test 082 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 = 282.701971 - 0: The maximum resident set size (KB) = 964180 + 0: The total amount of wall time = 280.841458 + 0: The maximum resident set size (KB) = 963644 -Test 087 rap_control_debug PASS +Test 082 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_unified_drag_suite_debug -Checking test 088 rap_unified_drag_suite_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_unified_drag_suite_debug +Checking test 083 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 = 281.231740 - 0: The maximum resident set size (KB) = 963740 + 0: The total amount of wall time = 278.357838 + 0: The maximum resident set size (KB) = 964216 -Test 088 rap_unified_drag_suite_debug PASS +Test 083 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_diag_debug -Checking test 089 rap_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_diag_debug +Checking test 084 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 = 298.471249 - 0: The maximum resident set size (KB) = 1047696 + 0: The total amount of wall time = 293.791863 + 0: The maximum resident set size (KB) = 1047640 -Test 089 rap_diag_debug PASS +Test 084 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_cires_ugwp_debug -Checking test 090 rap_cires_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_cires_ugwp_debug +Checking test 085 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 = 288.092352 - 0: The maximum resident set size (KB) = 969504 + 0: The total amount of wall time = 282.867564 + 0: The maximum resident set size (KB) = 969336 -Test 090 rap_cires_ugwp_debug PASS +Test 085 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_unified_ugwp_debug -Checking test 091 rap_unified_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_unified_ugwp_debug +Checking test 086 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 = 288.418613 - 0: The maximum resident set size (KB) = 963912 + 0: The total amount of wall time = 285.244307 + 0: The maximum resident set size (KB) = 964164 -Test 091 rap_unified_ugwp_debug PASS +Test 086 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_lndp_debug -Checking test 092 rap_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_lndp_debug +Checking test 087 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 = 284.804189 - 0: The maximum resident set size (KB) = 967940 + 0: The total amount of wall time = 280.657551 + 0: The maximum resident set size (KB) = 967900 -Test 092 rap_lndp_debug PASS +Test 087 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_flake_debug -Checking test 093 rap_flake_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_flake_debug +Checking test 088 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 = 282.644252 - 0: The maximum resident set size (KB) = 964064 + 0: The total amount of wall time = 277.420778 + 0: The maximum resident set size (KB) = 963904 -Test 093 rap_flake_debug PASS +Test 088 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_progcld_thompson_debug -Checking test 094 rap_progcld_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_progcld_thompson_debug +Checking test 089 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 = 281.859886 - 0: The maximum resident set size (KB) = 964200 + 0: The total amount of wall time = 278.234060 + 0: The maximum resident set size (KB) = 963812 -Test 094 rap_progcld_thompson_debug PASS +Test 089 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_noah_debug -Checking test 095 rap_noah_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_noah_debug +Checking test 090 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 = 302.801285 - 0: The maximum resident set size (KB) = 963500 + 0: The total amount of wall time = 272.797580 + 0: The maximum resident set size (KB) = 963496 -Test 095 rap_noah_debug PASS +Test 090 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_rrtmgp_debug -Checking test 096 rap_rrtmgp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_rrtmgp_debug +Checking test 091 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 501.480504 - 0: The maximum resident set size (KB) = 1085656 + 0: The total amount of wall time = 474.075542 + 0: The maximum resident set size (KB) = 1085504 -Test 096 rap_rrtmgp_debug PASS +Test 091 rap_rrtmgp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_sfcdiff_debug -Checking test 097 rap_sfcdiff_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_sfcdiff_debug +Checking test 092 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 = 280.357183 - 0: The maximum resident set size (KB) = 963900 + 0: The total amount of wall time = 278.641263 + 0: The maximum resident set size (KB) = 963852 -Test 097 rap_sfcdiff_debug PASS +Test 092 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 098 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 093 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 = 468.468806 - 0: The maximum resident set size (KB) = 965904 + 0: The total amount of wall time = 461.659545 + 0: The maximum resident set size (KB) = 965824 -Test 098 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/rrfs_v1beta_debug -Checking test 099 rrfs_v1beta_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/rrfs_v1beta_debug +Checking test 094 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 = 277.897388 - 0: The maximum resident set size (KB) = 964588 + 0: The total amount of wall time = 279.478177 + 0: The maximum resident set size (KB) = 964376 -Test 099 rrfs_v1beta_debug PASS +Test 094 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_wam_debug -Checking test 100 control_wam_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_wam_debug +Checking test 095 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 291.906862 - 0: The maximum resident set size (KB) = 212232 + 0: The total amount of wall time = 314.923414 + 0: The maximum resident set size (KB) = 212644 -Test 100 control_wam_debug PASS +Test 095 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_atm -Checking test 101 hafs_regional_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hafs_regional_atm +Checking test 096 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 296.529683 - 0: The maximum resident set size (KB) = 659644 + 0: The total amount of wall time = 286.870823 + 0: The maximum resident set size (KB) = 660232 -Test 101 hafs_regional_atm PASS +Test 096 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_atm_thompson_gfdlsf -Checking test 102 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hafs_regional_atm_thompson_gfdlsf +Checking test 097 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 368.617464 - 0: The maximum resident set size (KB) = 1018688 + 0: The total amount of wall time = 365.645717 + 0: The maximum resident set size (KB) = 1018592 -Test 102 hafs_regional_atm_thompson_gfdlsf PASS +Test 097 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_atm_ocn -Checking test 103 hafs_regional_atm_ocn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hafs_regional_atm_ocn +Checking test 098 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3034,29 +2769,29 @@ Checking test 103 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 = 398.430179 - 0: The maximum resident set size (KB) = 662280 + 0: The total amount of wall time = 408.112166 + 0: The maximum resident set size (KB) = 662312 -Test 103 hafs_regional_atm_ocn PASS +Test 098 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_atm_wav -Checking test 104 hafs_regional_atm_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hafs_regional_atm_wav +Checking test 099 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 899.939694 - 0: The maximum resident set size (KB) = 666176 + 0: The total amount of wall time = 874.561581 + 0: The maximum resident set size (KB) = 664216 -Test 104 hafs_regional_atm_wav PASS +Test 099 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_atm_ocn_wav -Checking test 105 hafs_regional_atm_ocn_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hafs_regional_atm_ocn_wav +Checking test 100 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3064,59 +2799,59 @@ Checking test 105 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 975.987494 - 0: The maximum resident set size (KB) = 666508 + 0: The total amount of wall time = 973.877568 + 0: The maximum resident set size (KB) = 667308 -Test 105 hafs_regional_atm_ocn_wav PASS +Test 100 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_1nest_atm -Checking test 106 hafs_regional_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hafs_regional_1nest_atm +Checking test 101 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 = 559.696084 - 0: The maximum resident set size (KB) = 261820 + 0: The total amount of wall time = 535.919497 + 0: The maximum resident set size (KB) = 261696 -Test 106 hafs_regional_1nest_atm PASS +Test 101 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_telescopic_2nests_atm -Checking test 107 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hafs_regional_telescopic_2nests_atm +Checking test 102 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 574.044641 - 0: The maximum resident set size (KB) = 264596 + 0: The total amount of wall time = 606.776457 + 0: The maximum resident set size (KB) = 265704 -Test 107 hafs_regional_telescopic_2nests_atm PASS +Test 102 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_global_1nest_atm -Checking test 108 hafs_global_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hafs_global_1nest_atm +Checking test 103 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 = 263.673211 - 0: The maximum resident set size (KB) = 165372 + 0: The total amount of wall time = 242.850270 + 0: The maximum resident set size (KB) = 165408 -Test 108 hafs_global_1nest_atm PASS +Test 103 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_global_multiple_4nests_atm -Checking test 109 hafs_global_multiple_4nests_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hafs_global_multiple_4nests_atm +Checking test 104 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3128,149 +2863,149 @@ Checking test 109 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK - 0: The total amount of wall time = 735.386499 - 0: The maximum resident set size (KB) = 231304 + 0: The total amount of wall time = 735.226144 + 0: The maximum resident set size (KB) = 218548 -Test 109 hafs_global_multiple_4nests_atm PASS +Test 104 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_docn -Checking test 110 hafs_regional_docn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hafs_regional_docn +Checking test 105 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 393.885463 - 0: The maximum resident set size (KB) = 665452 + 0: The total amount of wall time = 366.276747 + 0: The maximum resident set size (KB) = 665500 -Test 110 hafs_regional_docn PASS +Test 105 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_docn_oisst -Checking test 111 hafs_regional_docn_oisst results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hafs_regional_docn_oisst +Checking test 106 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 391.417399 - 0: The maximum resident set size (KB) = 665652 + 0: The total amount of wall time = 390.429295 + 0: The maximum resident set size (KB) = 665580 -Test 111 hafs_regional_docn_oisst PASS +Test 106 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/hafs_regional_datm_cdeps -Checking test 112 hafs_regional_datm_cdeps results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/hafs_regional_datm_cdeps +Checking test 107 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 = 1057.066231 - 0: The maximum resident set size (KB) = 807128 + 0: The total amount of wall time = 1043.536430 + 0: The maximum resident set size (KB) = 807108 -Test 112 hafs_regional_datm_cdeps PASS +Test 107 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_control_cfsr -Checking test 113 datm_cdeps_control_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_control_cfsr +Checking test 108 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.598126 - 0: The maximum resident set size (KB) = 683508 + 0: The total amount of wall time = 148.149720 + 0: The maximum resident set size (KB) = 683140 -Test 113 datm_cdeps_control_cfsr PASS +Test 108 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_restart_cfsr -Checking test 114 datm_cdeps_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_restart_cfsr +Checking test 109 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 87.190198 - 0: The maximum resident set size (KB) = 664208 + 0: The total amount of wall time = 88.521045 + 0: The maximum resident set size (KB) = 683260 -Test 114 datm_cdeps_restart_cfsr PASS +Test 109 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_control_gefs -Checking test 115 datm_cdeps_control_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_control_gefs +Checking test 110 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.637565 - 0: The maximum resident set size (KB) = 563580 + 0: The total amount of wall time = 146.243880 + 0: The maximum resident set size (KB) = 565668 -Test 115 datm_cdeps_control_gefs PASS +Test 110 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_iau_gefs -Checking test 116 datm_cdeps_iau_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_iau_gefs +Checking test 111 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.465486 - 0: The maximum resident set size (KB) = 565784 + 0: The total amount of wall time = 152.283213 + 0: The maximum resident set size (KB) = 567704 -Test 116 datm_cdeps_iau_gefs PASS +Test 111 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_stochy_gefs -Checking test 117 datm_cdeps_stochy_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_stochy_gefs +Checking test 112 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.432176 - 0: The maximum resident set size (KB) = 563816 + 0: The total amount of wall time = 180.125337 + 0: The maximum resident set size (KB) = 565688 -Test 117 datm_cdeps_stochy_gefs PASS +Test 112 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_bulk_cfsr -Checking test 118 datm_cdeps_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_bulk_cfsr +Checking test 113 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.506862 - 0: The maximum resident set size (KB) = 683432 + 0: The total amount of wall time = 149.575846 + 0: The maximum resident set size (KB) = 683296 -Test 118 datm_cdeps_bulk_cfsr PASS +Test 113 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_bulk_gefs -Checking test 119 datm_cdeps_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_bulk_gefs +Checking test 114 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.439416 - 0: The maximum resident set size (KB) = 565468 + 0: The total amount of wall time = 179.674286 + 0: The maximum resident set size (KB) = 563704 -Test 119 datm_cdeps_bulk_gefs PASS +Test 114 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_mx025_cfsr -Checking test 120 datm_cdeps_mx025_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_mx025_cfsr +Checking test 115 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3278,15 +3013,15 @@ Checking test 120 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 = 355.410543 - 0: The maximum resident set size (KB) = 482468 + 0: The total amount of wall time = 385.109843 + 0: The maximum resident set size (KB) = 487396 -Test 120 datm_cdeps_mx025_cfsr PASS +Test 115 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_mx025_gefs -Checking test 121 datm_cdeps_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_mx025_gefs +Checking test 116 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3294,65 +3029,65 @@ Checking test 121 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 352.994332 - 0: The maximum resident set size (KB) = 450756 + 0: The total amount of wall time = 343.227006 + 0: The maximum resident set size (KB) = 455512 -Test 121 datm_cdeps_mx025_gefs PASS +Test 116 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_multiple_files_cfsr -Checking test 122 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_multiple_files_cfsr +Checking test 117 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 = 149.509861 - 0: The maximum resident set size (KB) = 689036 + 0: The total amount of wall time = 149.339278 + 0: The maximum resident set size (KB) = 683348 -Test 122 datm_cdeps_multiple_files_cfsr PASS +Test 117 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_3072x1536_cfsr -Checking test 123 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_3072x1536_cfsr +Checking test 118 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 199.535291 - 0: The maximum resident set size (KB) = 1835828 + 0: The total amount of wall time = 201.622894 + 0: The maximum resident set size (KB) = 1835696 -Test 123 datm_cdeps_3072x1536_cfsr PASS +Test 118 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_gfs -Checking test 124 datm_cdeps_gfs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_gfs +Checking test 119 datm_cdeps_gfs results .... Comparing RESTART/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 = 205.910981 - 0: The maximum resident set size (KB) = 1835856 + 0: The total amount of wall time = 236.601383 + 0: The maximum resident set size (KB) = 1835680 -Test 124 datm_cdeps_gfs PASS +Test 119 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/datm_cdeps_debug_cfsr -Checking test 125 datm_cdeps_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/datm_cdeps_debug_cfsr +Checking test 120 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 368.524143 - 0: The maximum resident set size (KB) = 680944 + 0: The total amount of wall time = 365.291996 + 0: The maximum resident set size (KB) = 669436 -Test 125 datm_cdeps_debug_cfsr PASS +Test 120 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_atmwav -Checking test 126 control_atmwav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_atmwav +Checking test 121 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3395,15 +3130,15 @@ Checking test 126 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 91.499844 - 0: The maximum resident set size (KB) = 445832 + 0: The total amount of wall time = 98.946922 + 0: The maximum resident set size (KB) = 445644 -Test 126 control_atmwav PASS +Test 121 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20474/control_c384gdas_wav -Checking test 127 control_c384gdas_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384gdas_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42204/control_c384gdas_wav +Checking test 122 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3448,12 +3183,12 @@ Checking test 127 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 1478.925100 - 0: The maximum resident set size (KB) = 954888 + 0: The total amount of wall time = 1497.901270 + 0: The maximum resident set size (KB) = 956916 -Test 127 control_c384gdas_wav PASS +Test 122 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 5 16:56:31 EDT 2022 -Elapsed time: 02h:18m:19s. Have a nice day! +Wed Apr 6 22:41:20 EDT 2022 +Elapsed time: 01h:27m:46s. Have a nice day! From f7801a3eb46d9a88015b39b5782b5a2777eee411 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 6 Apr 2022 22:39:39 -0600 Subject: [PATCH 48/57] [AutoRT] cheyenne.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_cheyenne.intel.log | 1763 +++++++++------------- 1 file changed, 749 insertions(+), 1014 deletions(-) diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index bee9607697..729a031e81 100755 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,24 +1,24 @@ -Tue Apr 5 20:14:19 MDT 2022 +Wed Apr 6 21:10:05 MDT 2022 Start Regression test -Compile 001 elapsed time 1099 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 426 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 723 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 378 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 311 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 323 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 757 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 720 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 435 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 219 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 624 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_control_p8 +Compile 001 elapsed time 1017 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 404 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 648 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 365 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 310 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 312 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 761 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 744 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 436 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 228 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 613 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 411.951201 -0:The maximum resident set size (KB) = 2762184 +0:The total amount of wall time = 498.224812 +0:The maximum resident set size (KB) = 2874520 Test 001 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 830.894582 -0:The maximum resident set size (KB) = 3090620 +0:The total amount of wall time = 914.991990 +0:The maximum resident set size (KB) = 3269112 Test 002 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 409.877451 -0:The maximum resident set size (KB) = 2754344 +0:The total amount of wall time = 451.783201 +0:The maximum resident set size (KB) = 2866752 Test 003 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -267,119 +267,15 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 342.476550 -0:The maximum resident set size (KB) = 2676088 +0:The total amount of wall time = 373.432924 +0:The maximum resident set size (KB) = 2787980 Test 004 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_bmark_p7 -Checking test 005 cpld_bmark_p7 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -0:The total amount of wall time = 989.760959 -0:The maximum resident set size (KB) = 1210152 - -Test 005 cpld_bmark_p7 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_bmark_p7_rrtmgp -Checking test 006 cpld_bmark_p7_rrtmgp results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -0:The total amount of wall time = 1138.094977 -0:The maximum resident set size (KB) = 1338392 - -Test 006 cpld_bmark_p7_rrtmgp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_bmark_p8 -Checking test 007 cpld_bmark_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_bmark_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/cpld_bmark_p8 +Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -424,68 +320,15 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 1323.704512 -0:The maximum resident set size (KB) = 3655168 +0:The total amount of wall time = 1203.994467 +0:The maximum resident set size (KB) = 3907388 -Test 007 cpld_bmark_p8 PASS +Test 005 cpld_bmark_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_bmark_p8_rrtmgp -Checking test 008 cpld_bmark_p8_rrtmgp results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -0:The total amount of wall time = 1342.881196 -0:The maximum resident set size (KB) = 3908288 - -Test 008 cpld_bmark_p8_rrtmgp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_control_c96_p8 -Checking test 009 cpld_control_c96_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c96_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/cpld_control_c96_p8 +Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -547,15 +390,15 @@ Checking test 009 cpld_control_c96_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 = 410.958911 -0:The maximum resident set size (KB) = 2759188 +0:The total amount of wall time = 489.012585 +0:The maximum resident set size (KB) = 2870540 -Test 009 cpld_control_c96_p8 PASS +Test 006 cpld_control_c96_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_restart_c96_p8 -Checking test 010 cpld_restart_c96_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c96_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/cpld_restart_c96_p8 +Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -605,15 +448,15 @@ Checking test 010 cpld_restart_c96_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 = 227.843196 -0:The maximum resident set size (KB) = 2721064 +0:The total amount of wall time = 258.514425 +0:The maximum resident set size (KB) = 2858624 -Test 010 cpld_restart_c96_p8 PASS +Test 007 cpld_restart_c96_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/cpld_control_c192_p8 +Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -663,15 +506,15 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -0:The total amount of wall time = 1362.354931 -0:The maximum resident set size (KB) = 2801100 +0:The total amount of wall time = 1523.237648 +0:The maximum resident set size (KB) = 2981988 -Test 011 cpld_control_c192_p8 PASS +Test 008 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/cpld_restart_c192_p8 +Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -721,15 +564,15 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -0:The total amount of wall time = 905.710278 -0:The maximum resident set size (KB) = 2769140 +0:The total amount of wall time = 1001.364018 +0:The maximum resident set size (KB) = 3009640 -Test 012 cpld_restart_c192_p8 PASS +Test 009 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_control_c384_p8 -Checking test 013 cpld_control_c384_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c384_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/cpld_control_c384_p8 +Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -772,15 +615,15 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 1430.111378 -0:The maximum resident set size (KB) = 3660740 +0:The total amount of wall time = 1473.874161 +0:The maximum resident set size (KB) = 3910308 -Test 013 cpld_control_c384_p8 PASS +Test 010 cpld_control_c384_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_restart_c384_p8 -Checking test 014 cpld_restart_c384_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c384_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/cpld_restart_c384_p8 +Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -823,15 +666,15 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 883.184922 -0:The maximum resident set size (KB) = 3626988 +0:The total amount of wall time = 885.285118 +0:The maximum resident set size (KB) = 3989776 -Test 014 cpld_restart_c384_p8 PASS +Test 011 cpld_restart_c384_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/cpld_debug_p8 +Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -881,15 +724,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 1072.411143 -0:The maximum resident set size (KB) = 2829928 +0:The total amount of wall time = 1170.455192 +0:The maximum resident set size (KB) = 2942688 -Test 015 cpld_debug_p8 PASS +Test 012 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control -Checking test 016 control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control +Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -935,15 +778,15 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 148.836842 -0:The maximum resident set size (KB) = 446936 +0:The total amount of wall time = 148.431242 +0:The maximum resident set size (KB) = 447000 -Test 016 control PASS +Test 013 control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_decomp -Checking test 017 control_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_decomp +Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -985,29 +828,29 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 154.733568 -0:The maximum resident set size (KB) = 445160 +0:The total amount of wall time = 155.237030 +0:The maximum resident set size (KB) = 445480 -Test 017 control_decomp PASS +Test 014 control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_2dwrtdecomp -Checking test 018 control_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_2dwrtdecomp +Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 145.957024 -0:The maximum resident set size (KB) = 447132 +0:The total amount of wall time = 145.068614 +0:The maximum resident set size (KB) = 447184 -Test 018 control_2dwrtdecomp PASS +Test 015 control_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_2threads -Checking test 019 control_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_2threads +Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1049,15 +892,15 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 323.804705 -0:The maximum resident set size (KB) = 499284 +0:The total amount of wall time = 329.344209 +0:The maximum resident set size (KB) = 499232 -Test 019 control_2threads PASS +Test 016 control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_restart -Checking test 020 control_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_restart +Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1095,15 +938,15 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 78.348785 -0:The maximum resident set size (KB) = 191344 +0:The total amount of wall time = 76.838422 +0:The maximum resident set size (KB) = 190992 -Test 020 control_restart PASS +Test 017 control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_fhzero -Checking test 021 control_fhzero results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_fhzero +Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1145,15 +988,15 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 143.909455 -0:The maximum resident set size (KB) = 446956 +0:The total amount of wall time = 143.618698 +0:The maximum resident set size (KB) = 446632 -Test 021 control_fhzero PASS +Test 018 control_fhzero PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1179,15 +1022,15 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 147.222790 -0:The maximum resident set size (KB) = 446864 +0:The total amount of wall time = 144.635384 +0:The maximum resident set size (KB) = 446540 -Test 022 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1197,15 +1040,15 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.484197 -0:The maximum resident set size (KB) = 447060 +0:The total amount of wall time = 149.447238 +0:The maximum resident set size (KB) = 446656 -Test 023 control_latlon PASS +Test 020 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1215,15 +1058,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.164112 -0:The maximum resident set size (KB) = 446564 +0:The total amount of wall time = 150.841937 +0:The maximum resident set size (KB) = 446496 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1261,15 +1104,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 442.304430 -0:The maximum resident set size (KB) = 630216 +0:The total amount of wall time = 440.034423 +0:The maximum resident set size (KB) = 629732 -Test 025 control_c48 PASS +Test 022 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1279,15 +1122,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 612.344070 -0:The maximum resident set size (KB) = 545100 +0:The total amount of wall time = 600.338510 +0:The maximum resident set size (KB) = 544880 -Test 026 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1297,15 +1140,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1119.946325 -0:The maximum resident set size (KB) = 798752 +0:The total amount of wall time = 1118.252333 +0:The maximum resident set size (KB) = 799084 -Test 027 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1347,15 +1190,15 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 949.685113 -0:The maximum resident set size (KB) = 951276 +0:The total amount of wall time = 963.763425 +0:The maximum resident set size (KB) = 951252 -Test 028 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1365,29 +1208,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 97.629714 -0:The maximum resident set size (KB) = 449100 +0:The total amount of wall time = 98.121625 +0:The maximum resident set size (KB) = 448720 -Test 029 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.208105 -0:The maximum resident set size (KB) = 225172 +0:The total amount of wall time = 51.688417 +0:The maximum resident set size (KB) = 224884 -Test 030 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1397,15 +1240,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.764995 -0:The maximum resident set size (KB) = 450664 +0:The total amount of wall time = 87.470658 +0:The maximum resident set size (KB) = 450708 -Test 031 control_lndp PASS +Test 028 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1419,15 +1262,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 151.461872 -0:The maximum resident set size (KB) = 446644 +0:The total amount of wall time = 150.663534 +0:The maximum resident set size (KB) = 446656 -Test 032 control_iovr4 PASS +Test 029 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,15 +1284,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.185189 -0:The maximum resident set size (KB) = 446604 +0:The total amount of wall time = 151.079558 +0:The maximum resident set size (KB) = 446624 -Test 033 control_iovr5 PASS +Test 030 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1495,118 +1338,18 @@ Checking test 034 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 178.991815 -0:The maximum resident set size (KB) = 842060 - -Test 034 control_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_restart_p8 -Checking test 035 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 95.117271 -0:The maximum resident set size (KB) = 577752 - -Test 035 control_restart_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_decomp_p8 -Checking test 036 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 178.200126 -0:The maximum resident set size (KB) = 835972 +0:The total amount of wall time = 246.447860 +0:The maximum resident set size (KB) = 956584 -Test 036 control_decomp_p8 PASS +Test 031 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_2threads_p8 -Checking test 037 control_2threads_p8 results .... - Comparing sfcf000.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_restart_p8 +Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1641,26 +1384,22 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 435.422929 -0:The maximum resident set size (KB) = 916628 +0:The total amount of wall time = 122.428027 +0:The maximum resident set size (KB) = 740440 -Test 037 control_2threads_p8 PASS +Test 032 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p7_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_p7_rrtmgp -Checking test 038 control_p7_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_decomp_p8 +Checking test 033 control_decomp_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/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1695,26 +1434,22 @@ Checking test 038 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 239.567968 -0:The maximum resident set size (KB) = 601856 +0:The total amount of wall time = 234.980419 +0:The maximum resident set size (KB) = 953116 -Test 038 control_p7_rrtmgp PASS +Test 033 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_p8_rrtmgp -Checking test 039 control_p8_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_2threads_p8 +Checking test 034 control_2threads_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/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1749,15 +1484,15 @@ Checking test 039 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 251.924994 -0:The maximum resident set size (KB) = 956568 +0:The total amount of wall time = 559.302338 +0:The maximum resident set size (KB) = 1092808 -Test 039 control_p8_rrtmgp PASS +Test 034 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_control -Checking test 040 regional_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/regional_control +Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1767,58 +1502,58 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 365.900279 -0:The maximum resident set size (KB) = 571808 +0:The total amount of wall time = 366.590148 +0:The maximum resident set size (KB) = 571800 -Test 040 regional_control PASS +Test 035 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_restart -Checking test 041 regional_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/regional_restart +Checking test 036 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 199.109096 -0:The maximum resident set size (KB) = 562220 +0:The total amount of wall time = 200.872784 +0:The maximum resident set size (KB) = 562140 -Test 041 regional_restart PASS +Test 036 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_control_2dwrtdecomp -Checking test 042 regional_control_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/regional_control_2dwrtdecomp +Checking test 037 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 361.485102 -0:The maximum resident set size (KB) = 571024 +0:The total amount of wall time = 361.633936 +0:The maximum resident set size (KB) = 571080 -Test 042 regional_control_2dwrtdecomp PASS +Test 037 regional_control_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_noquilt -Checking test 043 regional_noquilt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/regional_noquilt +Checking test 038 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 381.100893 -0:The maximum resident set size (KB) = 578060 +0:The total amount of wall time = 384.012691 +0:The maximum resident set size (KB) = 578512 -Test 043 regional_noquilt PASS +Test 038 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_2threads -Checking test 044 regional_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/regional_2threads +Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1828,15 +1563,15 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 944.359278 -0:The maximum resident set size (KB) = 557976 +0:The total amount of wall time = 940.901042 +0:The maximum resident set size (KB) = 558296 -Test 044 regional_2threads PASS +Test 039 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_hafs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_hafs -Checking test 045 regional_hafs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_hafs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/regional_hafs +Checking test 040 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1844,29 +1579,29 @@ Checking test 045 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -0:The total amount of wall time = 371.061150 -0:The maximum resident set size (KB) = 560992 +0:The total amount of wall time = 367.321329 +0:The maximum resident set size (KB) = 560688 -Test 045 regional_hafs PASS +Test 040 regional_hafs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_netcdf_parallel -Checking test 046 regional_netcdf_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/regional_netcdf_parallel +Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 363.936026 -0:The maximum resident set size (KB) = 561940 +0:The total amount of wall time = 363.958767 +0:The maximum resident set size (KB) = 561896 -Test 046 regional_netcdf_parallel PASS +Test 041 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_RRTMGP -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_RRTMGP -Checking test 047 regional_RRTMGP results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_RRTMGP +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/regional_RRTMGP +Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1876,15 +1611,15 @@ Checking test 047 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 537.913036 -0:The maximum resident set size (KB) = 678008 +0:The total amount of wall time = 535.796955 +0:The maximum resident set size (KB) = 678004 -Test 047 regional_RRTMGP PASS +Test 042 regional_RRTMGP PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_3km -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_3km -Checking test 048 regional_3km results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_3km +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1894,15 +1629,15 @@ Checking test 048 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 301.627084 -0:The maximum resident set size (KB) = 595004 +0:The total amount of wall time = 301.068051 +0:The maximum resident set size (KB) = 595116 -Test 048 regional_3km PASS +Test 043 regional_3km PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_control -Checking test 049 rap_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1948,15 +1683,15 @@ Checking test 049 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 423.779432 -0:The maximum resident set size (KB) = 811592 +0:The total amount of wall time = 416.408623 +0:The maximum resident set size (KB) = 811756 -Test 049 rap_control PASS +Test 044 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_rrtmgp -Checking test 050 rap_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2002,15 +1737,15 @@ Checking test 050 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 496.541432 -0:The maximum resident set size (KB) = 942664 +0:The total amount of wall time = 473.668142 +0:The maximum resident set size (KB) = 942784 -Test 050 rap_rrtmgp PASS +Test 045 rap_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_spp_sppt_shum_skeb -Checking test 051 regional_spp_sppt_shum_skeb results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2020,15 +1755,15 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 653.976692 -0:The maximum resident set size (KB) = 942916 +0:The total amount of wall time = 644.464701 +0:The maximum resident set size (KB) = 942968 -Test 051 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_2threads -Checking test 052 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2074,15 +1809,15 @@ Checking test 052 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 897.190344 -0:The maximum resident set size (KB) = 878656 +0:The total amount of wall time = 885.886625 +0:The maximum resident set size (KB) = 878920 -Test 052 rap_2threads PASS +Test 047 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_restart -Checking test 053 rap_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2120,15 +1855,15 @@ Checking test 053 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 214.475399 -0:The maximum resident set size (KB) = 565360 +0:The total amount of wall time = 213.669817 +0:The maximum resident set size (KB) = 565212 -Test 053 rap_restart PASS +Test 048 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_sfcdiff -Checking test 054 rap_sfcdiff results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2174,15 +1909,15 @@ Checking test 054 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 423.904091 -0:The maximum resident set size (KB) = 811924 +0:The total amount of wall time = 420.818907 +0:The maximum resident set size (KB) = 811440 -Test 054 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_sfcdiff_restart -Checking test 055 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2220,15 +1955,15 @@ Checking test 055 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 214.141019 -0:The maximum resident set size (KB) = 565380 +0:The total amount of wall time = 215.007014 +0:The maximum resident set size (KB) = 565816 -Test 055 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hrrr_control -Checking test 056 hrrr_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2274,15 +2009,15 @@ Checking test 056 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 407.968562 -0:The maximum resident set size (KB) = 810548 +0:The total amount of wall time = 413.045400 +0:The maximum resident set size (KB) = 810768 -Test 056 hrrr_control PASS +Test 051 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rrfs_v1beta -Checking test 057 rrfs_v1beta results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2328,15 +2063,15 @@ Checking test 057 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 409.681559 -0:The maximum resident set size (KB) = 809216 +0:The total amount of wall time = 409.772376 +0:The maximum resident set size (KB) = 809444 -Test 057 rrfs_v1beta PASS +Test 052 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rrfs_v1nssl -Checking test 058 rrfs_v1nssl results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2350,15 +2085,15 @@ Checking test 058 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 531.509964 -0:The maximum resident set size (KB) = 499260 +0:The total amount of wall time = 519.636060 +0:The maximum resident set size (KB) = 499308 -Test 058 rrfs_v1nssl PASS +Test 053 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rrfs_v1nssl_nohailnoccn -Checking test 059 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2372,15 +2107,15 @@ Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 509.228150 -0:The maximum resident set size (KB) = 492340 +0:The total amount of wall time = 508.766614 +0:The maximum resident set size (KB) = 492592 -Test 059 rrfs_v1nssl_nohailnoccn PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rrfs_conus13km_hrrr_warm -Checking test 060 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rrfs_conus13km_hrrr_warm +Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2388,15 +2123,15 @@ Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 191.608691 -0:The maximum resident set size (KB) = 642444 +0:The total amount of wall time = 190.309658 +0:The maximum resident set size (KB) = 642268 -Test 060 rrfs_conus13km_hrrr_warm PASS +Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rrfs_conus13km_radar_tten_warm -Checking test 061 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rrfs_conus13km_radar_tten_warm +Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2404,15 +2139,15 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 187.839926 -0:The maximum resident set size (KB) = 644236 +0:The total amount of wall time = 190.893297 +0:The maximum resident set size (KB) = 644204 -Test 061 rrfs_conus13km_radar_tten_warm PASS +Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_rrtmgp -Checking test 062 control_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_rrtmgp +Checking test 057 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2422,15 +2157,15 @@ Checking test 062 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 267.385005 -0:The maximum resident set size (KB) = 598592 +0:The total amount of wall time = 249.247812 +0:The maximum resident set size (KB) = 598192 -Test 062 control_rrtmgp PASS +Test 057 control_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_rrtmgp_c192 -Checking test 063 control_rrtmgp_c192 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_rrtmgp_c192 +Checking test 058 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2440,15 +2175,15 @@ Checking test 063 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 713.214594 -0:The maximum resident set size (KB) = 797356 +0:The total amount of wall time = 709.697644 +0:The maximum resident set size (KB) = 797472 -Test 063 control_rrtmgp_c192 PASS +Test 058 control_rrtmgp_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_csawmg -Checking test 064 control_csawmg results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_csawmg +Checking test 059 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2458,15 +2193,15 @@ Checking test 064 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 412.624662 -0:The maximum resident set size (KB) = 523608 +0:The total amount of wall time = 412.512145 +0:The maximum resident set size (KB) = 523652 -Test 064 control_csawmg PASS +Test 059 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_csawmgt -Checking test 065 control_csawmgt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_csawmgt +Checking test 060 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2476,15 +2211,15 @@ Checking test 065 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 408.111053 -0:The maximum resident set size (KB) = 522468 +0:The total amount of wall time = 408.391282 +0:The maximum resident set size (KB) = 522084 -Test 065 control_csawmgt PASS +Test 060 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_flake -Checking test 066 control_flake results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_flake +Checking test 061 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2494,15 +2229,15 @@ Checking test 066 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 271.215398 -0:The maximum resident set size (KB) = 518932 +0:The total amount of wall time = 258.876943 +0:The maximum resident set size (KB) = 519048 -Test 066 control_flake PASS +Test 061 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_ras -Checking test 067 control_ras results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_ras +Checking test 062 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2512,15 +2247,15 @@ Checking test 067 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 212.749694 -0:The maximum resident set size (KB) = 480196 +0:The total amount of wall time = 211.509140 +0:The maximum resident set size (KB) = 480300 -Test 067 control_ras PASS +Test 062 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_thompson -Checking test 068 control_thompson results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_thompson +Checking test 063 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2530,15 +2265,15 @@ Checking test 068 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 269.286935 -0:The maximum resident set size (KB) = 832020 +0:The total amount of wall time = 266.868299 +0:The maximum resident set size (KB) = 831864 -Test 068 control_thompson PASS +Test 063 control_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_thompson_no_aero -Checking test 069 control_thompson_no_aero results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_no_aero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_thompson_no_aero +Checking test 064 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2548,55 +2283,55 @@ Checking test 069 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 256.743797 -0:The maximum resident set size (KB) = 825876 +0:The total amount of wall time = 256.714711 +0:The maximum resident set size (KB) = 825988 -Test 069 control_thompson_no_aero PASS +Test 064 control_thompson_no_aero PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_repro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_wam_repro -Checking test 070 control_wam results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wam_repro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_wam_repro +Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 141.309003 -0:The maximum resident set size (KB) = 204488 +0:The total amount of wall time = 142.124319 +0:The maximum resident set size (KB) = 204804 -Test 070 control_wam PASS +Test 065 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_debug -Checking test 071 control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_debug +Checking test 066 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.043819 -0:The maximum resident set size (KB) = 613480 +0:The total amount of wall time = 157.512160 +0:The maximum resident set size (KB) = 613532 -Test 071 control_debug PASS +Test 066 control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_2threads_debug -Checking test 072 control_2threads_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_2threads_debug +Checking test 067 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 276.212078 -0:The maximum resident set size (KB) = 666640 +0:The total amount of wall time = 275.923496 +0:The maximum resident set size (KB) = 662012 -Test 072 control_2threads_debug PASS +Test 067 control_2threads_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_CubedSphereGrid_debug -Checking test 073 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_CubedSphereGrid_debug +Checking test 068 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2622,429 +2357,429 @@ Checking test 073 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 171.880256 -0:The maximum resident set size (KB) = 613416 +0:The total amount of wall time = 171.191551 +0:The maximum resident set size (KB) = 613756 -Test 073 control_CubedSphereGrid_debug PASS +Test 068 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_wrtGauss_netcdf_parallel_debug -Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_wrtGauss_netcdf_parallel_debug +Checking test 069 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 162.920349 -0:The maximum resident set size (KB) = 613760 +0:The total amount of wall time = 159.762851 +0:The maximum resident set size (KB) = 613924 -Test 074 control_wrtGauss_netcdf_parallel_debug PASS +Test 069 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_stochy_debug -Checking test 075 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_stochy_debug +Checking test 070 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 180.285604 -0:The maximum resident set size (KB) = 617684 +0:The total amount of wall time = 180.169339 +0:The maximum resident set size (KB) = 617512 -Test 075 control_stochy_debug PASS +Test 070 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_lndp_debug -Checking test 076 control_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_lndp_debug +Checking test 071 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 = 162.291582 -0:The maximum resident set size (KB) = 618444 +0:The total amount of wall time = 161.643580 +0:The maximum resident set size (KB) = 618448 -Test 076 control_lndp_debug PASS +Test 071 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_rrtmgp_debug -Checking test 077 control_rrtmgp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_rrtmgp_debug +Checking test 072 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.095353 -0:The maximum resident set size (KB) = 740572 +0:The total amount of wall time = 173.825957 +0:The maximum resident set size (KB) = 740312 -Test 077 control_rrtmgp_debug PASS +Test 072 control_rrtmgp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_csawmg_debug -Checking test 078 control_csawmg_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_csawmg_debug +Checking test 073 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 = 255.860699 -0:The maximum resident set size (KB) = 662624 +0:The total amount of wall time = 251.704121 +0:The maximum resident set size (KB) = 662652 -Test 078 control_csawmg_debug PASS +Test 073 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_csawmgt_debug -Checking test 079 control_csawmgt_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_csawmgt_debug +Checking test 074 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 = 250.192048 -0:The maximum resident set size (KB) = 663064 +0:The total amount of wall time = 248.476985 +0:The maximum resident set size (KB) = 663080 -Test 079 control_csawmgt_debug PASS +Test 074 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_ras_debug -Checking test 080 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_ras_debug +Checking test 075 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 = 164.198458 -0:The maximum resident set size (KB) = 626092 +0:The total amount of wall time = 163.512715 +0:The maximum resident set size (KB) = 625808 -Test 080 control_ras_debug PASS +Test 075 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_diag_debug -Checking test 081 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_diag_debug +Checking test 076 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 = 166.036412 -0:The maximum resident set size (KB) = 669640 +0:The total amount of wall time = 166.201744 +0:The maximum resident set size (KB) = 669612 -Test 081 control_diag_debug PASS +Test 076 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_debug_p8 -Checking test 082 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_debug_p8 +Checking test 077 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 = 174.185691 -0:The maximum resident set size (KB) = 1008908 +0:The total amount of wall time = 192.068923 +0:The maximum resident set size (KB) = 1126980 -Test 082 control_debug_p8 PASS +Test 077 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_thompson_debug -Checking test 083 control_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_thompson_debug +Checking test 078 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 185.118412 -0:The maximum resident set size (KB) = 973164 +0:The total amount of wall time = 184.617748 +0:The maximum resident set size (KB) = 973228 -Test 083 control_thompson_debug PASS +Test 078 control_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_thompson_no_aero_debug -Checking test 084 control_thompson_no_aero_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_no_aero_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_thompson_no_aero_debug +Checking test 079 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 178.540700 -0:The maximum resident set size (KB) = 968700 +0:The total amount of wall time = 178.312864 +0:The maximum resident set size (KB) = 968788 -Test 084 control_thompson_no_aero_debug PASS +Test 079 control_thompson_no_aero_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug_extdiag -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_thompson_extdiag_debug -Checking test 085 control_thompson_extdiag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_debug_extdiag +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_thompson_extdiag_debug +Checking test 080 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 194.450741 -0:The maximum resident set size (KB) = 1001956 +0:The total amount of wall time = 193.560879 +0:The maximum resident set size (KB) = 1002196 -Test 085 control_thompson_extdiag_debug PASS +Test 080 control_thompson_extdiag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_thompson_progcld_thompson_debug -Checking test 086 control_thompson_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_thompson_progcld_thompson_debug +Checking test 081 control_thompson_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 = 185.354172 -0:The maximum resident set size (KB) = 973128 +0:The total amount of wall time = 184.600971 +0:The maximum resident set size (KB) = 973204 -Test 086 control_thompson_progcld_thompson_debug PASS +Test 081 control_thompson_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/regional_debug -Checking test 087 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/regional_debug +Checking test 082 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 = 259.525947 -0:The maximum resident set size (KB) = 593624 +0:The total amount of wall time = 258.803108 +0:The maximum resident set size (KB) = 594488 -Test 087 regional_debug PASS +Test 082 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_control_debug -Checking test 088 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_control_debug +Checking test 083 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 = 286.597425 -0:The maximum resident set size (KB) = 980012 +0:The total amount of wall time = 284.481315 +0:The maximum resident set size (KB) = 979856 -Test 088 rap_control_debug PASS +Test 083 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_unified_drag_suite_debug -Checking test 089 rap_unified_drag_suite_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_unified_drag_suite_debug +Checking test 084 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 = 285.365256 -0:The maximum resident set size (KB) = 979628 +0:The total amount of wall time = 285.180915 +0:The maximum resident set size (KB) = 979880 -Test 089 rap_unified_drag_suite_debug PASS +Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_diag_debug -Checking test 090 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_diag_debug +Checking test 085 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 = 299.590181 -0:The maximum resident set size (KB) = 1062772 +0:The total amount of wall time = 299.590273 +0:The maximum resident set size (KB) = 1062180 -Test 090 rap_diag_debug PASS +Test 085 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_cires_ugwp_debug -Checking test 091 rap_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_cires_ugwp_debug +Checking test 086 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 = 290.920686 -0:The maximum resident set size (KB) = 981192 +0:The total amount of wall time = 291.791165 +0:The maximum resident set size (KB) = 980828 -Test 091 rap_cires_ugwp_debug PASS +Test 086 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_unified_ugwp_debug -Checking test 092 rap_unified_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_unified_ugwp_debug +Checking test 087 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 = 291.203232 -0:The maximum resident set size (KB) = 980020 +0:The total amount of wall time = 290.136236 +0:The maximum resident set size (KB) = 980172 -Test 092 rap_unified_ugwp_debug PASS +Test 087 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_lndp_debug -Checking test 093 rap_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_lndp_debug +Checking test 088 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 = 288.015621 -0:The maximum resident set size (KB) = 980748 +0:The total amount of wall time = 287.802670 +0:The maximum resident set size (KB) = 980624 -Test 093 rap_lndp_debug PASS +Test 088 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_flake_debug -Checking test 094 rap_flake_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_flake_debug +Checking test 089 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 = 286.252142 -0:The maximum resident set size (KB) = 980024 +0:The total amount of wall time = 286.135946 +0:The maximum resident set size (KB) = 979592 -Test 094 rap_flake_debug PASS +Test 089 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_progcld_thompson_debug -Checking test 095 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_progcld_thompson_debug +Checking test 090 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 = 286.306778 -0:The maximum resident set size (KB) = 979812 +0:The total amount of wall time = 285.186447 +0:The maximum resident set size (KB) = 979460 -Test 095 rap_progcld_thompson_debug PASS +Test 090 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_noah_debug -Checking test 096 rap_noah_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_noah_debug +Checking test 091 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 = 281.584199 -0:The maximum resident set size (KB) = 981340 +0:The total amount of wall time = 281.012023 +0:The maximum resident set size (KB) = 981584 -Test 096 rap_noah_debug PASS +Test 091 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_rrtmgp_debug -Checking test 097 rap_rrtmgp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_rrtmgp_debug +Checking test 092 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 483.181712 -0:The maximum resident set size (KB) = 1109148 +0:The total amount of wall time = 481.633530 +0:The maximum resident set size (KB) = 1109212 -Test 097 rap_rrtmgp_debug PASS +Test 092 rap_rrtmgp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_sfcdiff_debug -Checking test 098 rap_sfcdiff_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_sfcdiff_debug +Checking test 093 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 = 286.591961 -0:The maximum resident set size (KB) = 979564 +0:The total amount of wall time = 285.507201 +0:The maximum resident set size (KB) = 979456 -Test 098 rap_sfcdiff_debug PASS +Test 093 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 094 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 = 471.436705 -0:The maximum resident set size (KB) = 980088 +0:The total amount of wall time = 471.665633 +0:The maximum resident set size (KB) = 979956 -Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/rrfs_v1beta_debug -Checking test 100 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/rrfs_v1beta_debug +Checking test 095 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 = 283.619890 -0:The maximum resident set size (KB) = 976976 +0:The total amount of wall time = 282.819577 +0:The maximum resident set size (KB) = 977032 -Test 100 rrfs_v1beta_debug PASS +Test 095 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_wam_debug -Checking test 101 control_wam_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_wam_debug +Checking test 096 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 296.555997 -0:The maximum resident set size (KB) = 235560 +0:The total amount of wall time = 295.887958 +0:The maximum resident set size (KB) = 235240 -Test 101 control_wam_debug PASS +Test 096 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_atm -Checking test 102 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hafs_regional_atm +Checking test 097 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 515.826520 -0:The maximum resident set size (KB) = 673044 +0:The total amount of wall time = 519.127519 +0:The maximum resident set size (KB) = 672896 -Test 102 hafs_regional_atm PASS +Test 097 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_atm_thompson_gfdlsf -Checking test 103 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hafs_regional_atm_thompson_gfdlsf +Checking test 098 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 600.431543 -0:The maximum resident set size (KB) = 1032108 +0:The total amount of wall time = 599.965097 +0:The maximum resident set size (KB) = 1032012 -Test 103 hafs_regional_atm_thompson_gfdlsf PASS +Test 098 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_atm_ocn -Checking test 104 hafs_regional_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hafs_regional_atm_ocn +Checking test 099 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3052,29 +2787,29 @@ Checking test 104 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 = 389.387358 -0:The maximum resident set size (KB) = 690080 +0:The total amount of wall time = 410.915845 +0:The maximum resident set size (KB) = 690688 -Test 104 hafs_regional_atm_ocn PASS +Test 099 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_atm_wav -Checking test 105 hafs_regional_atm_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hafs_regional_atm_wav +Checking test 100 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 1006.624727 -0:The maximum resident set size (KB) = 690648 +0:The total amount of wall time = 1001.618264 +0:The maximum resident set size (KB) = 690000 -Test 105 hafs_regional_atm_wav PASS +Test 100 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_atm_ocn_wav -Checking test 106 hafs_regional_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hafs_regional_atm_ocn_wav +Checking test 101 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3082,59 +2817,59 @@ Checking test 106 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 1068.650353 -0:The maximum resident set size (KB) = 690820 +0:The total amount of wall time = 1091.409900 +0:The maximum resident set size (KB) = 690684 -Test 106 hafs_regional_atm_ocn_wav PASS +Test 101 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_1nest_atm -Checking test 107 hafs_regional_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hafs_regional_1nest_atm +Checking test 102 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1042.250994 -0:The maximum resident set size (KB) = 273516 +0:The total amount of wall time = 1031.248560 +0:The maximum resident set size (KB) = 273524 -Test 107 hafs_regional_1nest_atm PASS +Test 102 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_telescopic_2nests_atm -Checking test 108 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hafs_regional_telescopic_2nests_atm +Checking test 103 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 1082.034022 -0:The maximum resident set size (KB) = 279800 +0:The total amount of wall time = 1067.336926 +0:The maximum resident set size (KB) = 280148 -Test 108 hafs_regional_telescopic_2nests_atm PASS +Test 103 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_global_1nest_atm -Checking test 109 hafs_global_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hafs_global_1nest_atm +Checking test 104 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 678.257418 -0:The maximum resident set size (KB) = 175032 +0:The total amount of wall time = 674.068257 +0:The maximum resident set size (KB) = 175116 -Test 109 hafs_global_1nest_atm PASS +Test 104 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_global_multiple_4nests_atm -Checking test 110 hafs_global_multiple_4nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hafs_global_multiple_4nests_atm +Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK @@ -3146,149 +2881,149 @@ Checking test 110 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1254.553710 -0:The maximum resident set size (KB) = 237872 +0:The total amount of wall time = 1243.136376 +0:The maximum resident set size (KB) = 238648 -Test 110 hafs_global_multiple_4nests_atm PASS +Test 105 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_docn -Checking test 111 hafs_regional_docn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hafs_regional_docn +Checking test 106 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 367.474326 -0:The maximum resident set size (KB) = 689292 +0:The total amount of wall time = 367.669250 +0:The maximum resident set size (KB) = 689096 -Test 111 hafs_regional_docn PASS +Test 106 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_docn_oisst -Checking test 112 hafs_regional_docn_oisst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hafs_regional_docn_oisst +Checking test 107 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 366.828985 -0:The maximum resident set size (KB) = 689116 +0:The total amount of wall time = 365.898067 +0:The maximum resident set size (KB) = 689412 -Test 112 hafs_regional_docn_oisst PASS +Test 107 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/hafs_regional_datm_cdeps -Checking test 113 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/hafs_regional_datm_cdeps +Checking test 108 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 = 1179.557956 -0:The maximum resident set size (KB) = 871612 +0:The total amount of wall time = 1302.288457 +0:The maximum resident set size (KB) = 871100 -Test 113 hafs_regional_datm_cdeps PASS +Test 108 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_control_cfsr -Checking test 114 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_control_cfsr +Checking test 109 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.100067 -0:The maximum resident set size (KB) = 706316 +0:The total amount of wall time = 165.530038 +0:The maximum resident set size (KB) = 694648 -Test 114 datm_cdeps_control_cfsr PASS +Test 109 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_restart_cfsr -Checking test 115 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_restart_cfsr +Checking test 110 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 99.669617 -0:The maximum resident set size (KB) = 694800 +0:The total amount of wall time = 100.419379 +0:The maximum resident set size (KB) = 695280 -Test 115 datm_cdeps_restart_cfsr PASS +Test 110 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_control_gefs -Checking test 116 datm_cdeps_control_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_control_gefs +Checking test 111 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 160.051761 -0:The maximum resident set size (KB) = 592368 +0:The total amount of wall time = 159.595954 +0:The maximum resident set size (KB) = 591612 -Test 116 datm_cdeps_control_gefs PASS +Test 111 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_iau_gefs -Checking test 117 datm_cdeps_iau_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_iau_gefs +Checking test 112 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 162.560172 -0:The maximum resident set size (KB) = 592280 +0:The total amount of wall time = 162.347625 +0:The maximum resident set size (KB) = 592868 -Test 117 datm_cdeps_iau_gefs PASS +Test 112 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_stochy_gefs -Checking test 118 datm_cdeps_stochy_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_stochy_gefs +Checking test 113 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 162.166625 -0:The maximum resident set size (KB) = 592116 +0:The total amount of wall time = 157.841120 +0:The maximum resident set size (KB) = 592256 -Test 118 datm_cdeps_stochy_gefs PASS +Test 113 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_bulk_cfsr -Checking test 119 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_bulk_cfsr +Checking test 114 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.972125 -0:The maximum resident set size (KB) = 694728 +0:The total amount of wall time = 161.278907 +0:The maximum resident set size (KB) = 694888 -Test 119 datm_cdeps_bulk_cfsr PASS +Test 114 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_bulk_gefs -Checking test 120 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_bulk_gefs +Checking test 115 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 155.108360 -0:The maximum resident set size (KB) = 592492 +0:The total amount of wall time = 159.011003 +0:The maximum resident set size (KB) = 592676 -Test 120 datm_cdeps_bulk_gefs PASS +Test 115 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_mx025_cfsr -Checking test 121 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_mx025_cfsr +Checking test 116 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3296,15 +3031,15 @@ Checking test 121 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 = 353.490955 -0:The maximum resident set size (KB) = 524408 +0:The total amount of wall time = 334.385782 +0:The maximum resident set size (KB) = 516132 -Test 121 datm_cdeps_mx025_cfsr PASS +Test 116 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_mx025_gefs -Checking test 122 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_mx025_gefs +Checking test 117 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3312,65 +3047,65 @@ Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 351.746395 -0:The maximum resident set size (KB) = 494916 +0:The total amount of wall time = 331.874921 +0:The maximum resident set size (KB) = 494120 -Test 122 datm_cdeps_mx025_gefs PASS +Test 117 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_multiple_files_cfsr -Checking test 123 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_multiple_files_cfsr +Checking test 118 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.313501 -0:The maximum resident set size (KB) = 695240 +0:The total amount of wall time = 165.096057 +0:The maximum resident set size (KB) = 694600 -Test 123 datm_cdeps_multiple_files_cfsr PASS +Test 118 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_3072x1536_cfsr -Checking test 124 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_3072x1536_cfsr +Checking test 119 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 236.223497 -0:The maximum resident set size (KB) = 1844884 +0:The total amount of wall time = 251.836020 +0:The maximum resident set size (KB) = 1845256 -Test 124 datm_cdeps_3072x1536_cfsr PASS +Test 119 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_gfs -Checking test 125 datm_cdeps_gfs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_gfs +Checking test 120 datm_cdeps_gfs results .... Comparing RESTART/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 = 236.719321 -0:The maximum resident set size (KB) = 1846180 +0:The total amount of wall time = 250.471864 +0:The maximum resident set size (KB) = 1814512 -Test 125 datm_cdeps_gfs PASS +Test 120 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/datm_cdeps_debug_cfsr -Checking test 126 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/datm_cdeps_debug_cfsr +Checking test 121 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 455.211312 -0:The maximum resident set size (KB) = 702936 +0:The total amount of wall time = 454.144039 +0:The maximum resident set size (KB) = 702928 -Test 126 datm_cdeps_debug_cfsr PASS +Test 121 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220405/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30964/control_atmwav -Checking test 127 control_atmwav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220406/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54091/control_atmwav +Checking test 122 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3413,12 +3148,12 @@ Checking test 127 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 140.278265 -0:The maximum resident set size (KB) = 468292 +0:The total amount of wall time = 139.098499 +0:The maximum resident set size (KB) = 468144 -Test 127 control_atmwav PASS +Test 122 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 5 21:59:27 MDT 2022 -Elapsed time: 01h:45m:08s. Have a nice day! +Wed Apr 6 22:39:38 MDT 2022 +Elapsed time: 01h:29m:33s. Have a nice day! From 47ef01842485f1e8b7ed607c5f6c56bbdf43d2ee Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Thu, 7 Apr 2022 17:15:27 +0000 Subject: [PATCH 49/57] Add GP settings to cpld_control_c96_noaero_p8 test. --- tests/tests/cpld_control_c96_noaero_p8 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/tests/cpld_control_c96_noaero_p8 b/tests/tests/cpld_control_c96_noaero_p8 index 8990703ff2..db3a8dbb0a 100644 --- a/tests/tests/cpld_control_c96_noaero_p8 +++ b/tests/tests/cpld_control_c96_noaero_p8 @@ -101,3 +101,9 @@ export DIAG_TABLE=diag_table_template export NEMS_CONFIGURE=nems.configure.cpld.IN export FV3_RUN=cpld_control_run.IN + +# RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. \ No newline at end of file From 98e2445018df3b7fa5dc5290f8e1a85d58425ba3 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 7 Apr 2022 17:21:05 +0000 Subject: [PATCH 50/57] update test resources default_vars.sh --- tests/default_vars.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index d2fc0b0f4d..39413292c3 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -76,9 +76,9 @@ elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" NPROC_ICE_cpl_bmrk_mpi=48 - TASKS_cpl_c192=288; TPN_cpl_c192=28; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - CHM_cpl_c192="0 191"; OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + TASKS_cpl_c192=384; TPN_cpl_c192=28; INPES_cpl_c192=6; JNPES_cpl_c192=8 + THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 287"; APB_cpl_c192="0 299" + CHM_cpl_c192="0 287"; OPB_cpl_c192="300 359"; IPB_cpl_c192="360 383" NPROC_ICE_cpl_c192=24 TASKS_cdeps_100=40; TPN_cdeps_100=28 @@ -222,9 +222,9 @@ elif [[ $MACHINE_ID = orion.* ]]; then OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" NPROC_ICE_cpl_bmrk_mpi=48 - TASKS_cpl_c192=288; TPN_cpl_c192=40; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - CHM_cpl_c192="0 191"; OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + TASKS_cpl_c192=384; TPN_cpl_c192=40; INPES_cpl_c192=6; JNPES_cpl_c192=8 + THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 287"; APB_cpl_c192="0 299" + CHM_cpl_c192="0 287"; OPB_cpl_c192="300 359"; IPB_cpl_c192="360 383" NPROC_ICE_cpl_c192=24 TASKS_cdeps_100=40; TPN_cdeps_100=40 @@ -345,9 +345,9 @@ elif [[ $MACHINE_ID = jet.* ]]; then TASKS_cpl_atmw_gdas=552; TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 551" - TASKS_cpl_c96=192; TPN_cpl_c96=24; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - CHM_cpl_c96="0 143"; OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" + TASKS_cpl_c96=240; TPN_cpl_c96=24; INPES_cpl_c96=4; JNPES_cpl_c96=8 + THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 191"; APB_cpl_c96="0 197" + CHM_cpl_c96="0 191"; OPB_cpl_c96="198 227"; IPB_cpl_c96="228 239" NPROC_ICE_cpl_c96=12 TASKS_cpl_dflt=200; TPN_cpl_dflt=24; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 From bcbf0eeab2d12128d59f23d39c1fdc15fda3b732 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Thu, 7 Apr 2022 17:23:19 +0000 Subject: [PATCH 51/57] Updated default_vars.sh --- tests/default_vars.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index d2fc0b0f4d..39413292c3 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -76,9 +76,9 @@ elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" NPROC_ICE_cpl_bmrk_mpi=48 - TASKS_cpl_c192=288; TPN_cpl_c192=28; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - CHM_cpl_c192="0 191"; OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + TASKS_cpl_c192=384; TPN_cpl_c192=28; INPES_cpl_c192=6; JNPES_cpl_c192=8 + THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 287"; APB_cpl_c192="0 299" + CHM_cpl_c192="0 287"; OPB_cpl_c192="300 359"; IPB_cpl_c192="360 383" NPROC_ICE_cpl_c192=24 TASKS_cdeps_100=40; TPN_cdeps_100=28 @@ -222,9 +222,9 @@ elif [[ $MACHINE_ID = orion.* ]]; then OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" NPROC_ICE_cpl_bmrk_mpi=48 - TASKS_cpl_c192=288; TPN_cpl_c192=40; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - CHM_cpl_c192="0 191"; OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + TASKS_cpl_c192=384; TPN_cpl_c192=40; INPES_cpl_c192=6; JNPES_cpl_c192=8 + THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 287"; APB_cpl_c192="0 299" + CHM_cpl_c192="0 287"; OPB_cpl_c192="300 359"; IPB_cpl_c192="360 383" NPROC_ICE_cpl_c192=24 TASKS_cdeps_100=40; TPN_cdeps_100=40 @@ -345,9 +345,9 @@ elif [[ $MACHINE_ID = jet.* ]]; then TASKS_cpl_atmw_gdas=552; TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 551" - TASKS_cpl_c96=192; TPN_cpl_c96=24; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - CHM_cpl_c96="0 143"; OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" + TASKS_cpl_c96=240; TPN_cpl_c96=24; INPES_cpl_c96=4; JNPES_cpl_c96=8 + THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 191"; APB_cpl_c96="0 197" + CHM_cpl_c96="0 191"; OPB_cpl_c96="198 227"; IPB_cpl_c96="228 239" NPROC_ICE_cpl_c96=12 TASKS_cpl_dflt=200; TPN_cpl_dflt=24; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 From 754de29ffd651d7229d01e8dde807beb8134b6fa Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 7 Apr 2022 14:03:41 -0500 Subject: [PATCH 52/57] [AutoRT] orion.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_orion.intel.log | 1765 +++++++++++-------------- 1 file changed, 750 insertions(+), 1015 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 0023b5d40f..6fe338b3df 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,24 +1,24 @@ -Tue Apr 5 13:10:51 CDT 2022 +Thu Apr 7 12:31:46 CDT 2022 Start Regression test -Compile 001 elapsed time 470 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 226 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 358 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 336 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 463 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 217 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 338 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 350 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 350 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 006 elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 187 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 169 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 170 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 394 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 401 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 211 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 103 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 330 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_control_p8 +Compile 007 elapsed time 186 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 162 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 168 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 419 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 379 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 202 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 115 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 368 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 371.851350 - 0: The maximum resident set size (KB) = 1137100 + 0: The total amount of wall time = 387.500257 + 0: The maximum resident set size (KB) = 1246328 Test 001 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 451.212159 - 0: The maximum resident set size (KB) = 1714568 + 0: The total amount of wall time = 509.668090 + 0: The maximum resident set size (KB) = 1875712 Test 002 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 373.111951 - 0: The maximum resident set size (KB) = 1128436 + 0: The total amount of wall time = 399.597349 + 0: The maximum resident set size (KB) = 1246644 Test 003 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -267,119 +267,15 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 304.778891 - 0: The maximum resident set size (KB) = 1049392 + 0: The total amount of wall time = 331.500543 + 0: The maximum resident set size (KB) = 1105740 Test 004 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_bmark_p7 -Checking test 005 cpld_bmark_p7 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 978.659399 - 0: The maximum resident set size (KB) = 1209148 - -Test 005 cpld_bmark_p7 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p7_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_bmark_p7_rrtmgp -Checking test 006 cpld_bmark_p7_rrtmgp results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1001.198869 - 0: The maximum resident set size (KB) = 1367808 - -Test 006 cpld_bmark_p7_rrtmgp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_bmark_p8 -Checking test 007 cpld_bmark_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/cpld_bmark_p8 +Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -424,68 +320,15 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1217.514101 - 0: The maximum resident set size (KB) = 2840740 + 0: The total amount of wall time = 1231.202427 + 0: The maximum resident set size (KB) = 3032868 -Test 007 cpld_bmark_p8 PASS +Test 005 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_bmark_p8_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_bmark_p8_rrtmgp -Checking test 008 cpld_bmark_p8_rrtmgp results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1295.064567 - 0: The maximum resident set size (KB) = 3029940 - -Test 008 cpld_bmark_p8_rrtmgp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_control_c96_p8 -Checking test 009 cpld_control_c96_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c96_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/cpld_control_c96_p8 +Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -547,15 +390,15 @@ Checking test 009 cpld_control_c96_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 = 375.385351 - 0: The maximum resident set size (KB) = 1150136 + 0: The total amount of wall time = 383.712417 + 0: The maximum resident set size (KB) = 1263192 -Test 009 cpld_control_c96_p8 PASS +Test 006 cpld_control_c96_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_restart_c96_p8 -Checking test 010 cpld_restart_c96_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c96_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/cpld_restart_c96_p8 +Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -605,15 +448,15 @@ Checking test 010 cpld_restart_c96_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 = 230.928769 - 0: The maximum resident set size (KB) = 1119396 + 0: The total amount of wall time = 217.267578 + 0: The maximum resident set size (KB) = 1248016 -Test 010 cpld_restart_c96_p8 PASS +Test 007 cpld_restart_c96_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/cpld_control_c192_p8 +Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -663,15 +506,15 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1500.437219 - 0: The maximum resident set size (KB) = 1591996 + 0: The total amount of wall time = 1240.192256 + 0: The maximum resident set size (KB) = 1425396 -Test 011 cpld_control_c192_p8 PASS +Test 008 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/cpld_restart_c192_p8 +Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -721,15 +564,15 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1450.564878 - 0: The maximum resident set size (KB) = 1783160 + 0: The total amount of wall time = 1006.469274 + 0: The maximum resident set size (KB) = 1526356 -Test 012 cpld_restart_c192_p8 PASS +Test 009 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_control_c384_p8 -Checking test 013 cpld_control_c384_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c384_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/cpld_control_c384_p8 +Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -772,15 +615,15 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1310.087894 - 0: The maximum resident set size (KB) = 2826340 + 0: The total amount of wall time = 1289.663041 + 0: The maximum resident set size (KB) = 3000824 -Test 013 cpld_control_c384_p8 PASS +Test 010 cpld_control_c384_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_restart_c384_p8 -Checking test 014 cpld_restart_c384_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c384_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/cpld_restart_c384_p8 +Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -823,15 +666,15 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 912.510293 - 0: The maximum resident set size (KB) = 2796100 + 0: The total amount of wall time = 749.942457 + 0: The maximum resident set size (KB) = 3046168 -Test 014 cpld_restart_c384_p8 PASS +Test 011 cpld_restart_c384_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/cpld_debug_p8 +Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -881,15 +724,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1132.613968 - 0: The maximum resident set size (KB) = 1293704 + 0: The total amount of wall time = 1138.570379 + 0: The maximum resident set size (KB) = 1384208 -Test 015 cpld_debug_p8 PASS +Test 012 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control -Checking test 016 control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control +Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -935,15 +778,15 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 135.053137 - 0: The maximum resident set size (KB) = 467248 + 0: The total amount of wall time = 126.782314 + 0: The maximum resident set size (KB) = 470812 -Test 016 control PASS +Test 013 control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_decomp -Checking test 017 control_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_decomp +Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -985,29 +828,29 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 139.724850 - 0: The maximum resident set size (KB) = 467972 + 0: The total amount of wall time = 140.836371 + 0: The maximum resident set size (KB) = 468952 -Test 017 control_decomp PASS +Test 014 control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_2dwrtdecomp -Checking test 018 control_2dwrtdecomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_2dwrtdecomp +Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 129.299877 - 0: The maximum resident set size (KB) = 469028 + 0: The total amount of wall time = 125.815090 + 0: The maximum resident set size (KB) = 468988 -Test 018 control_2dwrtdecomp PASS +Test 015 control_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_2threads -Checking test 019 control_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_2threads +Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1049,15 +892,15 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.630060 - 0: The maximum resident set size (KB) = 519644 + 0: The total amount of wall time = 157.325821 + 0: The maximum resident set size (KB) = 526480 -Test 019 control_2threads PASS +Test 016 control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_restart -Checking test 020 control_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_restart +Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1095,15 +938,15 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 70.244328 - 0: The maximum resident set size (KB) = 209268 + 0: The total amount of wall time = 70.423057 + 0: The maximum resident set size (KB) = 214008 -Test 020 control_restart PASS +Test 017 control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_fhzero -Checking test 021 control_fhzero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_fhzero +Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1145,15 +988,15 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 127.583725 - 0: The maximum resident set size (KB) = 467124 + 0: The total amount of wall time = 121.862588 + 0: The maximum resident set size (KB) = 470888 -Test 021 control_fhzero PASS +Test 018 control_fhzero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1179,15 +1022,15 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 142.095836 - 0: The maximum resident set size (KB) = 464264 + 0: The total amount of wall time = 131.548005 + 0: The maximum resident set size (KB) = 468208 -Test 022 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_latlon -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_latlon +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1197,15 +1040,15 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.220403 - 0: The maximum resident set size (KB) = 465456 + 0: The total amount of wall time = 129.458942 + 0: The maximum resident set size (KB) = 471260 -Test 023 control_latlon PASS +Test 020 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1215,15 +1058,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.104718 - 0: The maximum resident set size (KB) = 469656 + 0: The total amount of wall time = 131.427979 + 0: The maximum resident set size (KB) = 468320 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1261,15 +1104,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 321.811854 -0: The maximum resident set size (KB) = 654136 +0: The total amount of wall time = 319.766990 +0: The maximum resident set size (KB) = 654888 -Test 025 control_c48 PASS +Test 022 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1279,15 +1122,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 511.684879 - 0: The maximum resident set size (KB) = 564232 + 0: The total amount of wall time = 484.584775 + 0: The maximum resident set size (KB) = 563784 -Test 026 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1297,15 +1140,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 862.414978 - 0: The maximum resident set size (KB) = 820620 + 0: The total amount of wall time = 827.574494 + 0: The maximum resident set size (KB) = 823396 -Test 027 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1347,15 +1190,15 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 750.553938 - 0: The maximum resident set size (KB) = 935824 + 0: The total amount of wall time = 702.612748 + 0: The maximum resident set size (KB) = 917288 -Test 028 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1365,29 +1208,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 97.044954 - 0: The maximum resident set size (KB) = 468404 + 0: The total amount of wall time = 84.988708 + 0: The maximum resident set size (KB) = 472212 -Test 029 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.482335 - 0: The maximum resident set size (KB) = 251812 + 0: The total amount of wall time = 47.376378 + 0: The maximum resident set size (KB) = 252492 -Test 030 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1397,15 +1240,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.900154 - 0: The maximum resident set size (KB) = 472468 + 0: The total amount of wall time = 77.728349 + 0: The maximum resident set size (KB) = 474576 -Test 031 control_lndp PASS +Test 028 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr4 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_iovr4 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1419,15 +1262,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.245017 - 0: The maximum resident set size (KB) = 466208 + 0: The total amount of wall time = 128.768765 + 0: The maximum resident set size (KB) = 471828 -Test 032 control_iovr4 PASS +Test 029 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_iovr5 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_iovr5 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,15 +1284,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.857719 - 0: The maximum resident set size (KB) = 465588 + 0: The total amount of wall time = 131.253458 + 0: The maximum resident set size (KB) = 468036 -Test 033 control_iovr5 PASS +Test 030 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1495,68 +1338,18 @@ Checking test 034 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.990953 - 0: The maximum resident set size (KB) = 853300 - -Test 034 control_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_restart_p8 -Checking test 035 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 86.526474 - 0: The maximum resident set size (KB) = 605420 + 0: The total amount of wall time = 196.104358 + 0: The maximum resident set size (KB) = 969888 -Test 035 control_restart_p8 PASS +Test 031 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_decomp_p8 -Checking test 036 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_restart_p8 +Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1591,15 +1384,15 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.956356 - 0: The maximum resident set size (KB) = 851488 + 0: The total amount of wall time = 105.384511 + 0: The maximum resident set size (KB) = 759152 -Test 036 control_decomp_p8 PASS +Test 032 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_2threads_p8 -Checking test 037 control_2threads_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_decomp_p8 +Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1641,26 +1434,22 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.986280 - 0: The maximum resident set size (KB) = 929048 + 0: The total amount of wall time = 216.718419 + 0: The maximum resident set size (KB) = 973800 -Test 037 control_2threads_p8 PASS +Test 033 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p7_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_p7_rrtmgp -Checking test 038 control_p7_rrtmgp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_2threads_p8 +Checking test 034 control_2threads_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/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1695,69 +1484,15 @@ Checking test 038 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 187.642383 - 0: The maximum resident set size (KB) = 613420 + 0: The total amount of wall time = 245.839789 + 0: The maximum resident set size (KB) = 1111208 -Test 038 control_p7_rrtmgp PASS +Test 034 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_p8_rrtmgp -Checking test 039 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 197.523512 - 0: The maximum resident set size (KB) = 975908 - -Test 039 control_p8_rrtmgp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_control -Checking test 040 regional_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/regional_control +Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1767,58 +1502,58 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 324.803282 - 0: The maximum resident set size (KB) = 588528 + 0: The total amount of wall time = 313.517306 + 0: The maximum resident set size (KB) = 589244 -Test 040 regional_control PASS +Test 035 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_restart -Checking test 041 regional_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/regional_restart +Checking test 036 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 199.870437 - 0: The maximum resident set size (KB) = 587780 + 0: The total amount of wall time = 179.582212 + 0: The maximum resident set size (KB) = 585612 -Test 041 regional_restart PASS +Test 036 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_control_2dwrtdecomp -Checking test 042 regional_control_2dwrtdecomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/regional_control_2dwrtdecomp +Checking test 037 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 320.241617 - 0: The maximum resident set size (KB) = 580220 + 0: The total amount of wall time = 313.131897 + 0: The maximum resident set size (KB) = 581388 -Test 042 regional_control_2dwrtdecomp PASS +Test 037 regional_control_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_noquilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_noquilt -Checking test 043 regional_noquilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_noquilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/regional_noquilt +Checking test 038 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 322.219235 - 0: The maximum resident set size (KB) = 595472 + 0: The total amount of wall time = 319.539851 + 0: The maximum resident set size (KB) = 596568 -Test 043 regional_noquilt PASS +Test 038 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_2threads -Checking test 044 regional_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/regional_2threads +Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1828,15 +1563,15 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 243.089811 - 0: The maximum resident set size (KB) = 558260 + 0: The total amount of wall time = 243.819208 + 0: The maximum resident set size (KB) = 579752 -Test 044 regional_2threads PASS +Test 039 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_hafs -Checking test 045 regional_hafs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/regional_hafs +Checking test 040 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1844,29 +1579,29 @@ Checking test 045 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 315.673225 - 0: The maximum resident set size (KB) = 583104 + 0: The total amount of wall time = 312.967837 + 0: The maximum resident set size (KB) = 585508 -Test 045 regional_hafs PASS +Test 040 regional_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_netcdf_parallel -Checking test 046 regional_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/regional_netcdf_parallel +Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 314.023088 - 0: The maximum resident set size (KB) = 584364 + 0: The total amount of wall time = 310.500492 + 0: The maximum resident set size (KB) = 586444 -Test 046 regional_netcdf_parallel PASS +Test 041 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_RRTMGP -Checking test 047 regional_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/regional_RRTMGP +Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1876,15 +1611,15 @@ Checking test 047 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 423.916658 - 0: The maximum resident set size (KB) = 705292 + 0: The total amount of wall time = 419.037781 + 0: The maximum resident set size (KB) = 708200 -Test 047 regional_RRTMGP PASS +Test 042 regional_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_3km -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_3km -Checking test 048 regional_3km results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_3km +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1894,15 +1629,15 @@ Checking test 048 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 276.238829 - 0: The maximum resident set size (KB) = 620868 + 0: The total amount of wall time = 247.735573 + 0: The maximum resident set size (KB) = 618340 -Test 048 regional_3km PASS +Test 043 regional_3km PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_control -Checking test 049 rap_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1948,15 +1683,15 @@ Checking test 049 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 367.513063 - 0: The maximum resident set size (KB) = 838944 + 0: The total amount of wall time = 375.432337 + 0: The maximum resident set size (KB) = 839736 -Test 049 rap_control PASS +Test 044 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_rrtmgp -Checking test 050 rap_rrtmgp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2002,15 +1737,15 @@ Checking test 050 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 411.229860 - 0: The maximum resident set size (KB) = 965448 + 0: The total amount of wall time = 406.740654 + 0: The maximum resident set size (KB) = 962504 -Test 050 rap_rrtmgp PASS +Test 045 rap_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_spp_sppt_shum_skeb -Checking test 051 regional_spp_sppt_shum_skeb results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2020,15 +1755,15 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 333.025324 - 0: The maximum resident set size (KB) = 932504 + 0: The total amount of wall time = 307.114261 + 0: The maximum resident set size (KB) = 933924 -Test 051 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_2threads -Checking test 052 rap_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2074,15 +1809,15 @@ Checking test 052 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 437.510609 - 0: The maximum resident set size (KB) = 916760 + 0: The total amount of wall time = 440.710204 + 0: The maximum resident set size (KB) = 909896 -Test 052 rap_2threads PASS +Test 047 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_restart -Checking test 053 rap_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2120,15 +1855,15 @@ Checking test 053 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.151150 - 0: The maximum resident set size (KB) = 595424 + 0: The total amount of wall time = 188.768466 + 0: The maximum resident set size (KB) = 592656 -Test 053 rap_restart PASS +Test 048 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_sfcdiff -Checking test 054 rap_sfcdiff results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2174,15 +1909,15 @@ Checking test 054 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.603592 - 0: The maximum resident set size (KB) = 839284 + 0: The total amount of wall time = 367.233084 + 0: The maximum resident set size (KB) = 841928 -Test 054 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_sfcdiff_restart -Checking test 055 rap_sfcdiff_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2220,15 +1955,15 @@ Checking test 055 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 185.149659 - 0: The maximum resident set size (KB) = 597008 + 0: The total amount of wall time = 187.828114 + 0: The maximum resident set size (KB) = 592272 -Test 055 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hrrr_control -Checking test 056 hrrr_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hrrr_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2274,15 +2009,15 @@ Checking test 056 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.806365 - 0: The maximum resident set size (KB) = 839344 + 0: The total amount of wall time = 356.035422 + 0: The maximum resident set size (KB) = 838836 -Test 056 hrrr_control PASS +Test 051 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rrfs_v1beta -Checking test 057 rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2328,15 +2063,15 @@ Checking test 057 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 374.128537 - 0: The maximum resident set size (KB) = 837180 + 0: The total amount of wall time = 369.036920 + 0: The maximum resident set size (KB) = 838972 -Test 057 rrfs_v1beta PASS +Test 052 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rrfs_v1nssl -Checking test 058 rrfs_v1nssl results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1nssl +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2350,15 +2085,15 @@ Checking test 058 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 455.487036 - 0: The maximum resident set size (KB) = 523760 + 0: The total amount of wall time = 461.667075 + 0: The maximum resident set size (KB) = 525016 -Test 058 rrfs_v1nssl PASS +Test 053 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rrfs_v1nssl_nohailnoccn -Checking test 059 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2372,15 +2107,15 @@ Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 436.692687 - 0: The maximum resident set size (KB) = 516584 + 0: The total amount of wall time = 426.724693 + 0: The maximum resident set size (KB) = 519624 -Test 059 rrfs_v1nssl_nohailnoccn PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rrfs_conus13km_hrrr_warm -Checking test 060 rrfs_conus13km_hrrr_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rrfs_conus13km_hrrr_warm +Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2388,15 +2123,15 @@ Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 199.190378 - 0: The maximum resident set size (KB) = 670852 + 0: The total amount of wall time = 173.337272 + 0: The maximum resident set size (KB) = 668652 -Test 060 rrfs_conus13km_hrrr_warm PASS +Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rrfs_conus13km_radar_tten_warm -Checking test 061 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rrfs_conus13km_radar_tten_warm +Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2404,15 +2139,15 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 189.059138 - 0: The maximum resident set size (KB) = 674752 + 0: The total amount of wall time = 171.432175 + 0: The maximum resident set size (KB) = 673772 -Test 061 rrfs_conus13km_radar_tten_warm PASS +Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_rrtmgp -Checking test 062 control_rrtmgp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_rrtmgp +Checking test 057 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2422,15 +2157,15 @@ Checking test 062 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 204.227383 - 0: The maximum resident set size (KB) = 612792 + 0: The total amount of wall time = 195.348210 + 0: The maximum resident set size (KB) = 611240 -Test 062 control_rrtmgp PASS +Test 057 control_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_rrtmgp_c192 -Checking test 063 control_rrtmgp_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_rrtmgp_c192 +Checking test 058 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2440,15 +2175,15 @@ Checking test 063 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 542.382989 - 0: The maximum resident set size (KB) = 815232 + 0: The total amount of wall time = 523.912277 + 0: The maximum resident set size (KB) = 812804 -Test 063 control_rrtmgp_c192 PASS +Test 058 control_rrtmgp_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_csawmg -Checking test 064 control_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_csawmg +Checking test 059 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2458,15 +2193,15 @@ Checking test 064 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.551212 - 0: The maximum resident set size (KB) = 539204 + 0: The total amount of wall time = 324.592338 + 0: The maximum resident set size (KB) = 540472 -Test 064 control_csawmg PASS +Test 059 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_csawmgt -Checking test 065 control_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_csawmgt +Checking test 060 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2476,15 +2211,15 @@ Checking test 065 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 318.833386 - 0: The maximum resident set size (KB) = 539552 + 0: The total amount of wall time = 313.967857 + 0: The maximum resident set size (KB) = 535168 -Test 065 control_csawmgt PASS +Test 060 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_flake -Checking test 066 control_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_flake +Checking test 061 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2494,15 +2229,15 @@ Checking test 066 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 254.657464 - 0: The maximum resident set size (KB) = 543424 + 0: The total amount of wall time = 238.990364 + 0: The maximum resident set size (KB) = 541736 -Test 066 control_flake PASS +Test 061 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_ras -Checking test 067 control_ras results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_ras +Checking test 062 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2512,15 +2247,15 @@ Checking test 067 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.886090 - 0: The maximum resident set size (KB) = 499892 + 0: The total amount of wall time = 169.520810 + 0: The maximum resident set size (KB) = 497004 -Test 067 control_ras PASS +Test 062 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_thompson -Checking test 068 control_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_thompson +Checking test 063 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2530,15 +2265,15 @@ Checking test 068 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 214.950209 - 0: The maximum resident set size (KB) = 858180 + 0: The total amount of wall time = 218.638772 + 0: The maximum resident set size (KB) = 852632 -Test 068 control_thompson PASS +Test 063 control_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_thompson_no_aero -Checking test 069 control_thompson_no_aero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_thompson_no_aero +Checking test 064 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2548,55 +2283,55 @@ Checking test 069 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 210.419388 - 0: The maximum resident set size (KB) = 854120 + 0: The total amount of wall time = 209.001824 + 0: The maximum resident set size (KB) = 849028 -Test 069 control_thompson_no_aero PASS +Test 064 control_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_repro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_wam_repro -Checking test 070 control_wam results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wam_repro +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_wam_repro +Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 124.707984 - 0: The maximum resident set size (KB) = 233552 + 0: The total amount of wall time = 121.788015 + 0: The maximum resident set size (KB) = 235640 -Test 070 control_wam PASS +Test 065 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_debug -Checking test 071 control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_debug +Checking test 066 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 = 161.243063 - 0: The maximum resident set size (KB) = 631160 + 0: The total amount of wall time = 150.864747 + 0: The maximum resident set size (KB) = 630192 -Test 071 control_debug PASS +Test 066 control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_2threads_debug -Checking test 072 control_2threads_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_2threads_debug +Checking test 067 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.440251 - 0: The maximum resident set size (KB) = 679364 + 0: The total amount of wall time = 228.244408 + 0: The maximum resident set size (KB) = 682196 -Test 072 control_2threads_debug PASS +Test 067 control_2threads_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_CubedSphereGrid_debug -Checking test 073 control_CubedSphereGrid_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_CubedSphereGrid_debug +Checking test 068 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2622,429 +2357,429 @@ Checking test 073 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 170.641730 - 0: The maximum resident set size (KB) = 633264 + 0: The total amount of wall time = 166.965487 + 0: The maximum resident set size (KB) = 634704 -Test 073 control_CubedSphereGrid_debug PASS +Test 068 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_wrtGauss_netcdf_parallel_debug -Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_wrtGauss_netcdf_parallel_debug +Checking test 069 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.282217 - 0: The maximum resident set size (KB) = 631324 + 0: The total amount of wall time = 158.646754 + 0: The maximum resident set size (KB) = 634064 -Test 074 control_wrtGauss_netcdf_parallel_debug PASS +Test 069 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_stochy_debug -Checking test 075 control_stochy_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_stochy_debug +Checking test 070 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 = 202.020291 - 0: The maximum resident set size (KB) = 637044 + 0: The total amount of wall time = 172.507023 + 0: The maximum resident set size (KB) = 639012 -Test 075 control_stochy_debug PASS +Test 070 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_lndp_debug -Checking test 076 control_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_lndp_debug +Checking test 071 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 = 166.954268 - 0: The maximum resident set size (KB) = 640352 + 0: The total amount of wall time = 159.299865 + 0: The maximum resident set size (KB) = 639596 -Test 076 control_lndp_debug PASS +Test 071 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_rrtmgp_debug -Checking test 077 control_rrtmgp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_rrtmgp_debug +Checking test 072 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.013242 - 0: The maximum resident set size (KB) = 750380 + 0: The total amount of wall time = 171.031644 + 0: The maximum resident set size (KB) = 754468 -Test 077 control_rrtmgp_debug PASS +Test 072 control_rrtmgp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_csawmg_debug -Checking test 078 control_csawmg_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_csawmg_debug +Checking test 073 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 = 243.993949 - 0: The maximum resident set size (KB) = 676000 + 0: The total amount of wall time = 238.237541 + 0: The maximum resident set size (KB) = 679428 -Test 078 control_csawmg_debug PASS +Test 073 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_csawmgt_debug -Checking test 079 control_csawmgt_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_csawmgt_debug +Checking test 074 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 = 241.272828 - 0: The maximum resident set size (KB) = 675548 + 0: The total amount of wall time = 234.741740 + 0: The maximum resident set size (KB) = 678160 -Test 079 control_csawmgt_debug PASS +Test 074 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_ras_debug -Checking test 080 control_ras_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_ras_debug +Checking test 075 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 = 184.192795 - 0: The maximum resident set size (KB) = 643476 + 0: The total amount of wall time = 163.470737 + 0: The maximum resident set size (KB) = 646980 -Test 080 control_ras_debug PASS +Test 075 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_diag_debug -Checking test 081 control_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_diag_debug +Checking test 076 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 = 191.437805 - 0: The maximum resident set size (KB) = 689672 + 0: The total amount of wall time = 164.641992 + 0: The maximum resident set size (KB) = 689740 -Test 081 control_diag_debug PASS +Test 076 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_debug_p8 -Checking test 082 control_debug_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_debug_p8 +Checking test 077 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 = 188.275062 - 0: The maximum resident set size (KB) = 1021256 + 0: The total amount of wall time = 182.684403 + 0: The maximum resident set size (KB) = 1144780 -Test 082 control_debug_p8 PASS +Test 077 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_thompson_debug -Checking test 083 control_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_thompson_debug +Checking test 078 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 182.018232 - 0: The maximum resident set size (KB) = 998092 + 0: The total amount of wall time = 183.514132 + 0: The maximum resident set size (KB) = 1001400 -Test 083 control_thompson_debug PASS +Test 078 control_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_thompson_no_aero_debug -Checking test 084 control_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_thompson_no_aero_debug +Checking test 079 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 184.599785 - 0: The maximum resident set size (KB) = 992360 + 0: The total amount of wall time = 175.189031 + 0: The maximum resident set size (KB) = 989820 -Test 084 control_thompson_no_aero_debug PASS +Test 079 control_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_debug_extdiag -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_thompson_extdiag_debug -Checking test 085 control_thompson_extdiag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_debug_extdiag +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_thompson_extdiag_debug +Checking test 080 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.548179 - 0: The maximum resident set size (KB) = 1027972 + 0: The total amount of wall time = 193.688141 + 0: The maximum resident set size (KB) = 1029848 -Test 085 control_thompson_extdiag_debug PASS +Test 080 control_thompson_extdiag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_thompson_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_thompson_progcld_thompson_debug -Checking test 086 control_thompson_progcld_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_thompson_progcld_thompson_debug +Checking test 081 control_thompson_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 = 211.946403 - 0: The maximum resident set size (KB) = 994928 + 0: The total amount of wall time = 186.061845 + 0: The maximum resident set size (KB) = 997188 -Test 086 control_thompson_progcld_thompson_debug PASS +Test 081 control_thompson_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/fv3_regional_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/regional_debug -Checking test 087 regional_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/regional_debug +Checking test 082 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 = 269.741949 - 0: The maximum resident set size (KB) = 608428 + 0: The total amount of wall time = 254.783487 + 0: The maximum resident set size (KB) = 610016 -Test 087 regional_debug PASS +Test 082 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_control_debug -Checking test 088 rap_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_control_debug +Checking test 083 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 = 288.226962 - 0: The maximum resident set size (KB) = 1005808 + 0: The total amount of wall time = 282.652622 + 0: The maximum resident set size (KB) = 1006276 -Test 088 rap_control_debug PASS +Test 083 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_unified_drag_suite_debug -Checking test 089 rap_unified_drag_suite_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_unified_drag_suite_debug +Checking test 084 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 = 307.976079 - 0: The maximum resident set size (KB) = 1008020 + 0: The total amount of wall time = 274.899058 + 0: The maximum resident set size (KB) = 1006300 -Test 089 rap_unified_drag_suite_debug PASS +Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_diag_debug -Checking test 090 rap_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_diag_debug +Checking test 085 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 = 306.370843 - 0: The maximum resident set size (KB) = 1086740 + 0: The total amount of wall time = 289.232984 + 0: The maximum resident set size (KB) = 1091440 -Test 090 rap_diag_debug PASS +Test 085 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_cires_ugwp_debug -Checking test 091 rap_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_cires_ugwp_debug +Checking test 086 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 = 298.052249 - 0: The maximum resident set size (KB) = 982608 + 0: The total amount of wall time = 281.313488 + 0: The maximum resident set size (KB) = 978100 -Test 091 rap_cires_ugwp_debug PASS +Test 086 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_unified_ugwp_debug -Checking test 092 rap_unified_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_unified_ugwp_debug +Checking test 087 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 = 304.043551 - 0: The maximum resident set size (KB) = 1003932 + 0: The total amount of wall time = 282.787240 + 0: The maximum resident set size (KB) = 975784 -Test 092 rap_unified_ugwp_debug PASS +Test 087 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_lndp_debug -Checking test 093 rap_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_lndp_debug +Checking test 088 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 = 287.676346 - 0: The maximum resident set size (KB) = 1009088 + 0: The total amount of wall time = 277.325079 + 0: The maximum resident set size (KB) = 1003024 -Test 093 rap_lndp_debug PASS +Test 088 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_flake_debug -Checking test 094 rap_flake_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_flake_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_flake_debug +Checking test 089 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 = 291.634960 - 0: The maximum resident set size (KB) = 1004404 + 0: The total amount of wall time = 275.180106 + 0: The maximum resident set size (KB) = 1006848 -Test 094 rap_flake_debug PASS +Test 089 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_progcld_thompson_debug -Checking test 095 rap_progcld_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_progcld_thompson_debug +Checking test 090 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 = 297.177978 - 0: The maximum resident set size (KB) = 1005052 + 0: The total amount of wall time = 271.512746 + 0: The maximum resident set size (KB) = 1005876 -Test 095 rap_progcld_thompson_debug PASS +Test 090 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_noah_debug -Checking test 096 rap_noah_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_noah_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_noah_debug +Checking test 091 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 = 297.284892 - 0: The maximum resident set size (KB) = 1008276 + 0: The total amount of wall time = 274.124642 + 0: The maximum resident set size (KB) = 1001224 -Test 096 rap_noah_debug PASS +Test 091 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_rrtmgp_debug -Checking test 097 rap_rrtmgp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_rrtmgp_debug +Checking test 092 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 483.505458 - 0: The maximum resident set size (KB) = 1123564 + 0: The total amount of wall time = 475.657250 + 0: The maximum resident set size (KB) = 1126256 -Test 097 rap_rrtmgp_debug PASS +Test 092 rap_rrtmgp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_sfcdiff_debug -Checking test 098 rap_sfcdiff_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_sfcdiff_debug +Checking test 093 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 = 293.325108 - 0: The maximum resident set size (KB) = 1003820 + 0: The total amount of wall time = 292.636606 + 0: The maximum resident set size (KB) = 999412 -Test 098 rap_sfcdiff_debug PASS +Test 093 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 094 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 = 471.018604 - 0: The maximum resident set size (KB) = 1003832 + 0: The total amount of wall time = 446.873504 + 0: The maximum resident set size (KB) = 1002848 -Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/rrfs_v1beta_debug -Checking test 100 rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/rrfs_v1beta_debug +Checking test 095 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 = 287.190314 - 0: The maximum resident set size (KB) = 998136 + 0: The total amount of wall time = 272.733859 + 0: The maximum resident set size (KB) = 1000936 -Test 100 rrfs_v1beta_debug PASS +Test 095 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_wam_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_wam_debug -Checking test 101 control_wam_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wam_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_wam_debug +Checking test 096 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 297.291226 - 0: The maximum resident set size (KB) = 257348 + 0: The total amount of wall time = 286.699294 + 0: The maximum resident set size (KB) = 256884 -Test 101 control_wam_debug PASS +Test 096 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_atm -Checking test 102 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hafs_regional_atm +Checking test 097 hafs_regional_atm results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 291.375229 - 0: The maximum resident set size (KB) = 717416 + 0: The total amount of wall time = 260.351971 + 0: The maximum resident set size (KB) = 708192 -Test 102 hafs_regional_atm PASS +Test 097 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_atm_thompson_gfdlsf -Checking test 103 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hafs_regional_atm_thompson_gfdlsf +Checking test 098 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 349.637150 - 0: The maximum resident set size (KB) = 1074780 + 0: The total amount of wall time = 323.842191 + 0: The maximum resident set size (KB) = 1065576 -Test 103 hafs_regional_atm_thompson_gfdlsf PASS +Test 098 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_atm_ocn -Checking test 104 hafs_regional_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hafs_regional_atm_ocn +Checking test 099 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3052,29 +2787,29 @@ Checking test 104 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 = 392.324474 - 0: The maximum resident set size (KB) = 728268 + 0: The total amount of wall time = 349.658589 + 0: The maximum resident set size (KB) = 728608 -Test 104 hafs_regional_atm_ocn PASS +Test 099 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_atm_wav -Checking test 105 hafs_regional_atm_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hafs_regional_atm_wav +Checking test 100 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 854.501052 - 0: The maximum resident set size (KB) = 727912 + 0: The total amount of wall time = 820.641088 + 0: The maximum resident set size (KB) = 729912 -Test 105 hafs_regional_atm_wav PASS +Test 100 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_atm_ocn_wav -Checking test 106 hafs_regional_atm_ocn_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hafs_regional_atm_ocn_wav +Checking test 101 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3082,29 +2817,29 @@ Checking test 106 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 990.711761 - 0: The maximum resident set size (KB) = 725964 + 0: The total amount of wall time = 908.100662 + 0: The maximum resident set size (KB) = 703288 -Test 106 hafs_regional_atm_ocn_wav PASS +Test 101 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_1nest_atm -Checking test 107 hafs_regional_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hafs_regional_1nest_atm +Checking test 102 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 = 422.664170 - 0: The maximum resident set size (KB) = 311284 + 0: The total amount of wall time = 420.271930 + 0: The maximum resident set size (KB) = 313676 -Test 107 hafs_regional_1nest_atm PASS +Test 102 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_telescopic_2nests_atm -Checking test 108 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hafs_regional_telescopic_2nests_atm +Checking test 103 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3112,29 +2847,29 @@ Checking test 108 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 = 454.387110 - 0: The maximum resident set size (KB) = 327888 + 0: The total amount of wall time = 456.219708 + 0: The maximum resident set size (KB) = 338048 -Test 108 hafs_regional_telescopic_2nests_atm PASS +Test 103 hafs_regional_telescopic_2nests_atm PASS Tries: 2 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_global_1nest_atm -Checking test 109 hafs_global_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hafs_global_1nest_atm +Checking test 104 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 = 196.423029 - 0: The maximum resident set size (KB) = 209480 + 0: The total amount of wall time = 197.942630 + 0: The maximum resident set size (KB) = 208208 -Test 109 hafs_global_1nest_atm PASS +Test 104 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_global_multiple_4nests_atm -Checking test 110 hafs_global_multiple_4nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hafs_global_multiple_4nests_atm +Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3146,149 +2881,149 @@ Checking test 110 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 699.323907 - 0: The maximum resident set size (KB) = 264108 + 0: The total amount of wall time = 536.346995 + 0: The maximum resident set size (KB) = 279160 -Test 110 hafs_global_multiple_4nests_atm PASS +Test 105 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_docn -Checking test 111 hafs_regional_docn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_docn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hafs_regional_docn +Checking test 106 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 376.398617 - 0: The maximum resident set size (KB) = 726820 + 0: The total amount of wall time = 341.321818 + 0: The maximum resident set size (KB) = 723952 -Test 111 hafs_regional_docn PASS +Test 106 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_docn_oisst -Checking test 112 hafs_regional_docn_oisst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hafs_regional_docn_oisst +Checking test 107 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 366.890069 - 0: The maximum resident set size (KB) = 726008 + 0: The total amount of wall time = 342.254613 + 0: The maximum resident set size (KB) = 726044 -Test 112 hafs_regional_docn_oisst PASS +Test 107 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/hafs_regional_datm_cdeps -Checking test 113 hafs_regional_datm_cdeps results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/hafs_regional_datm_cdeps +Checking test 108 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 = 938.187709 - 0: The maximum resident set size (KB) = 851240 + 0: The total amount of wall time = 917.068583 + 0: The maximum resident set size (KB) = 855148 -Test 113 hafs_regional_datm_cdeps PASS +Test 108 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_control_cfsr -Checking test 114 datm_cdeps_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_control_cfsr +Checking test 109 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.470458 - 0: The maximum resident set size (KB) = 720836 + 0: The total amount of wall time = 143.521392 + 0: The maximum resident set size (KB) = 719568 -Test 114 datm_cdeps_control_cfsr PASS +Test 109 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_restart_cfsr -Checking test 115 datm_cdeps_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_restart_cfsr +Checking test 110 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.438043 - 0: The maximum resident set size (KB) = 717684 + 0: The total amount of wall time = 100.670057 + 0: The maximum resident set size (KB) = 717668 -Test 115 datm_cdeps_restart_cfsr PASS +Test 110 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_control_gefs -Checking test 116 datm_cdeps_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_control_gefs +Checking test 111 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.658154 - 0: The maximum resident set size (KB) = 621548 + 0: The total amount of wall time = 137.592639 + 0: The maximum resident set size (KB) = 620280 -Test 116 datm_cdeps_control_gefs PASS +Test 111 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_iau_gefs -Checking test 117 datm_cdeps_iau_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_iau_gefs +Checking test 112 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.100147 - 0: The maximum resident set size (KB) = 617976 + 0: The total amount of wall time = 141.091612 + 0: The maximum resident set size (KB) = 618128 -Test 117 datm_cdeps_iau_gefs PASS +Test 112 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_stochy_gefs -Checking test 118 datm_cdeps_stochy_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_stochy_gefs +Checking test 113 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.494969 - 0: The maximum resident set size (KB) = 623340 + 0: The total amount of wall time = 138.804322 + 0: The maximum resident set size (KB) = 618920 -Test 118 datm_cdeps_stochy_gefs PASS +Test 113 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_bulk_cfsr -Checking test 119 datm_cdeps_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_bulk_cfsr +Checking test 114 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.923843 - 0: The maximum resident set size (KB) = 738992 + 0: The total amount of wall time = 142.275180 + 0: The maximum resident set size (KB) = 719596 -Test 119 datm_cdeps_bulk_cfsr PASS +Test 114 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_bulk_gefs -Checking test 120 datm_cdeps_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_bulk_gefs +Checking test 115 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.978126 - 0: The maximum resident set size (KB) = 620908 + 0: The total amount of wall time = 136.795590 + 0: The maximum resident set size (KB) = 620856 -Test 120 datm_cdeps_bulk_gefs PASS +Test 115 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_mx025_cfsr -Checking test 121 datm_cdeps_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_mx025_cfsr +Checking test 116 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3296,15 +3031,15 @@ Checking test 121 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 = 357.945484 - 0: The maximum resident set size (KB) = 561688 + 0: The total amount of wall time = 297.699053 + 0: The maximum resident set size (KB) = 560428 -Test 121 datm_cdeps_mx025_cfsr PASS +Test 116 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_mx025_gefs -Checking test 122 datm_cdeps_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_mx025_gefs +Checking test 117 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3312,65 +3047,65 @@ Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 337.895987 - 0: The maximum resident set size (KB) = 538128 + 0: The total amount of wall time = 296.914059 + 0: The maximum resident set size (KB) = 531168 -Test 122 datm_cdeps_mx025_gefs PASS +Test 117 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_multiple_files_cfsr -Checking test 123 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_multiple_files_cfsr +Checking test 118 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 = 155.581238 - 0: The maximum resident set size (KB) = 723212 + 0: The total amount of wall time = 140.777825 + 0: The maximum resident set size (KB) = 720900 -Test 123 datm_cdeps_multiple_files_cfsr PASS +Test 118 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_3072x1536_cfsr -Checking test 124 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_3072x1536_cfsr +Checking test 119 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 207.400968 - 0: The maximum resident set size (KB) = 1829792 + 0: The total amount of wall time = 190.916235 + 0: The maximum resident set size (KB) = 1897728 -Test 124 datm_cdeps_3072x1536_cfsr PASS +Test 119 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_gfs -Checking test 125 datm_cdeps_gfs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_gfs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_gfs +Checking test 120 datm_cdeps_gfs results .... Comparing RESTART/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 = 198.831737 - 0: The maximum resident set size (KB) = 1831764 + 0: The total amount of wall time = 194.679693 + 0: The maximum resident set size (KB) = 1834336 -Test 125 datm_cdeps_gfs PASS +Test 120 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/datm_cdeps_debug_cfsr -Checking test 126 datm_cdeps_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/datm_cdeps_debug_cfsr +Checking test 121 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 460.429813 - 0: The maximum resident set size (KB) = 727896 + 0: The total amount of wall time = 448.095411 + 0: The maximum resident set size (KB) = 727752 -Test 126 datm_cdeps_debug_cfsr PASS +Test 121 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_atmwav -Checking test 127 control_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_atmwav +Checking test 122 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3413,15 +3148,15 @@ Checking test 127 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 90.182291 - 0: The maximum resident set size (KB) = 495948 + 0: The total amount of wall time = 83.108921 + 0: The maximum resident set size (KB) = 493084 -Test 127 control_atmwav PASS +Test 122 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/INTEL/control_c384gdas_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_37306/control_c384gdas_wav -Checking test 128 control_c384gdas_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384gdas_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_130412/control_c384gdas_wav +Checking test 123 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3466,12 +3201,12 @@ Checking test 128 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 784.930942 - 0: The maximum resident set size (KB) = 1022836 + 0: The total amount of wall time = 690.595819 + 0: The maximum resident set size (KB) = 1026988 -Test 128 control_c384gdas_wav PASS +Test 123 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 5 14:29:48 CDT 2022 -Elapsed time: 01h:18m:57s. Have a nice day! +Thu Apr 7 14:03:31 CDT 2022 +Elapsed time: 01h:31m:46s. Have a nice day! From 6928204caaba93e36d024bb8cb76c8150eea3404 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Thu, 7 Apr 2022 20:04:07 +0000 Subject: [PATCH 53/57] Revert "Add GP settings to cpld_control_c96_noaero_p8 test." This reverts commit 47ef01842485f1e8b7ed607c5f6c56bbdf43d2ee. --- tests/tests/cpld_control_c96_noaero_p8 | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/tests/cpld_control_c96_noaero_p8 b/tests/tests/cpld_control_c96_noaero_p8 index db3a8dbb0a..8990703ff2 100644 --- a/tests/tests/cpld_control_c96_noaero_p8 +++ b/tests/tests/cpld_control_c96_noaero_p8 @@ -101,9 +101,3 @@ export DIAG_TABLE=diag_table_template export NEMS_CONFIGURE=nems.configure.cpld.IN export FV3_RUN=cpld_control_run.IN - -# RRTMGP -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. -export DOGP_SGS_CNV=.true. \ No newline at end of file From 253370bc77ae84e60e8ac8fa6effb42faef2fa6d Mon Sep 17 00:00:00 2001 From: MinsukJi-NOAA Date: Thu, 7 Apr 2022 22:31:53 +0000 Subject: [PATCH 54/57] Add Jet RT log: all tests passed --- tests/RegressionTests_jet.intel.log | 1554 +++++++++++++-------------- 1 file changed, 721 insertions(+), 833 deletions(-) diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 417f7c8c3a..1bec7a6e21 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,24 +1,24 @@ -Mon Apr 4 15:31:56 GMT 2022 +Thu Apr 7 21:02:54 GMT 2022 Start Regression test -Compile 001 elapsed time 1430 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 258 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1254 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 004 elapsed time 1263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 005 elapsed time 1321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 006 elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 255 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 229 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 230 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 1272 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1277 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 284 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 014 elapsed time 130 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 1433 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 262 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1291 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 004 elapsed time 1286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 005 elapsed time 1280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 006 elapsed time 739 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 234 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 219 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 220 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 1341 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1267 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 286 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 014 elapsed time 128 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 015 elapsed time 1208 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_control_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 466.249234 - 0: The maximum resident set size (KB) = 1156484 + 0: The total amount of wall time = 522.189376 + 0: The maximum resident set size (KB) = 1278976 Test 001 cpld_control_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_2threads_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 1505.005406 - 0: The maximum resident set size (KB) = 1754680 + 0: The total amount of wall time = 1567.636667 + 0: The maximum resident set size (KB) = 1937584 Test 002 cpld_2threads_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_mpi_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/cpld_mpi_p8 Checking test 003 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,127 +206,15 @@ Checking test 003 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 398.202681 - 0: The maximum resident set size (KB) = 1280636 + 0: The total amount of wall time = 440.366635 + 0: The maximum resident set size (KB) = 1403080 Test 003 cpld_mpi_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p7_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_control_p7_rrtmgp -Checking test 004 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 371.681597 - 0: The maximum resident set size (KB) = 663496 - -Test 004 cpld_control_p7_rrtmgp PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_bmark_p7 -Checking test 005 cpld_bmark_p7 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1191.386373 - 0: The maximum resident set size (KB) = 1225036 - -Test 005 cpld_bmark_p7 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_control_c96_p8 -Checking test 006 cpld_control_c96_p8 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c96_p8 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/cpld_control_c96_p8 +Checking test 004 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -388,15 +276,15 @@ Checking test 006 cpld_control_c96_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 = 538.425894 - 0: The maximum resident set size (KB) = 1363172 + 0: The total amount of wall time = 434.700911 + 0: The maximum resident set size (KB) = 1394436 -Test 006 cpld_control_c96_p8 PASS +Test 004 cpld_control_c96_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_restart_c96_p8 -Checking test 007 cpld_restart_c96_p8 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_control_c96_p8 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/cpld_restart_c96_p8 +Checking test 005 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -446,15 +334,15 @@ Checking test 007 cpld_restart_c96_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 = 265.497462 - 0: The maximum resident set size (KB) = 1332248 + 0: The total amount of wall time = 247.383559 + 0: The maximum resident set size (KB) = 1364424 -Test 007 cpld_restart_c96_p8 PASS +Test 005 cpld_restart_c96_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_debug_p8 -Checking test 008 cpld_debug_p8 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/cpld_debug_p8 +Checking test 006 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -504,15 +392,15 @@ Checking test 008 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1339.079704 - 0: The maximum resident set size (KB) = 1426520 + 0: The total amount of wall time = 1201.498540 + 0: The maximum resident set size (KB) = 1454340 -Test 008 cpld_debug_p8 PASS +Test 006 cpld_debug_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control -Checking test 009 control results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control +Checking test 007 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -558,15 +446,15 @@ Checking test 009 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 184.432629 - 0: The maximum resident set size (KB) = 462912 + 0: The total amount of wall time = 185.507788 + 0: The maximum resident set size (KB) = 468940 -Test 009 control PASS +Test 007 control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_decomp -Checking test 010 control_decomp results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_decomp +Checking test 008 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -608,29 +496,29 @@ Checking test 010 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.501960 - 0: The maximum resident set size (KB) = 464368 + 0: The total amount of wall time = 188.430198 + 0: The maximum resident set size (KB) = 462956 -Test 010 control_decomp PASS +Test 008 control_decomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_2dwrtdecomp -Checking test 011 control_2dwrtdecomp results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_2dwrtdecomp +Checking test 009 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 176.648572 - 0: The maximum resident set size (KB) = 463360 + 0: The total amount of wall time = 175.357102 + 0: The maximum resident set size (KB) = 466720 -Test 011 control_2dwrtdecomp PASS +Test 009 control_2dwrtdecomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_2threads -Checking test 012 control_2threads results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_2threads +Checking test 010 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -672,15 +560,15 @@ Checking test 012 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 799.155700 - 0: The maximum resident set size (KB) = 517580 + 0: The total amount of wall time = 776.969116 + 0: The maximum resident set size (KB) = 520836 -Test 012 control_2threads PASS +Test 010 control_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_restart -Checking test 013 control_restart results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_restart +Checking test 011 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -718,15 +606,15 @@ Checking test 013 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.323105 - 0: The maximum resident set size (KB) = 208028 + 0: The total amount of wall time = 97.385622 + 0: The maximum resident set size (KB) = 206008 -Test 013 control_restart PASS +Test 011 control_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_fhzero -Checking test 014 control_fhzero results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_fhzero +Checking test 012 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -768,15 +656,15 @@ Checking test 014 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 185.232373 - 0: The maximum resident set size (KB) = 467464 + 0: The total amount of wall time = 174.266822 + 0: The maximum resident set size (KB) = 469212 -Test 014 control_fhzero PASS +Test 012 control_fhzero PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_CubedSphereGrid -Checking test 015 control_CubedSphereGrid results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_CubedSphereGrid +Checking test 013 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -802,15 +690,15 @@ Checking test 015 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 182.090576 - 0: The maximum resident set size (KB) = 464540 + 0: The total amount of wall time = 175.928712 + 0: The maximum resident set size (KB) = 466308 -Test 015 control_CubedSphereGrid PASS +Test 013 control_CubedSphereGrid PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_latlon -Checking test 016 control_latlon results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_latlon +Checking test 014 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -820,15 +708,15 @@ Checking test 016 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.638287 - 0: The maximum resident set size (KB) = 465520 + 0: The total amount of wall time = 178.549627 + 0: The maximum resident set size (KB) = 468372 -Test 016 control_latlon PASS +Test 014 control_latlon PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_wrtGauss_netcdf_parallel -Checking test 017 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_wrtGauss_netcdf_parallel +Checking test 015 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -838,15 +726,15 @@ Checking test 017 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.703991 - 0: The maximum resident set size (KB) = 463764 + 0: The total amount of wall time = 190.541314 + 0: The maximum resident set size (KB) = 464256 -Test 017 control_wrtGauss_netcdf_parallel PASS +Test 015 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_c48 -Checking test 018 control_c48 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_c48 +Checking test 016 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -884,15 +772,15 @@ Checking test 018 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 562.332080 -0: The maximum resident set size (KB) = 657760 +0: The total amount of wall time = 558.670321 +0: The maximum resident set size (KB) = 658204 -Test 018 control_c48 PASS +Test 016 control_c48 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_c192 -Checking test 019 control_c192 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_c192 +Checking test 017 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -902,15 +790,15 @@ Checking test 019 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 693.169389 - 0: The maximum resident set size (KB) = 563128 + 0: The total amount of wall time = 684.716717 + 0: The maximum resident set size (KB) = 563256 -Test 019 control_c192 PASS +Test 017 control_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_c384 -Checking test 020 control_c384 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_c384 +Checking test 018 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -920,15 +808,15 @@ Checking test 020 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 850.105677 - 0: The maximum resident set size (KB) = 686152 + 0: The total amount of wall time = 849.919700 + 0: The maximum resident set size (KB) = 683428 -Test 020 control_c384 PASS +Test 018 control_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_c384gdas -Checking test 021 control_c384gdas results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_c384gdas +Checking test 019 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -970,15 +858,15 @@ Checking test 021 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 798.005568 - 0: The maximum resident set size (KB) = 774724 + 0: The total amount of wall time = 800.897935 + 0: The maximum resident set size (KB) = 784384 -Test 021 control_c384gdas PASS +Test 019 control_c384gdas PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_stochy -Checking test 022 control_stochy results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_stochy +Checking test 020 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -988,29 +876,29 @@ Checking test 022 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 126.764996 - 0: The maximum resident set size (KB) = 469528 + 0: The total amount of wall time = 123.356577 + 0: The maximum resident set size (KB) = 470528 -Test 022 control_stochy PASS +Test 020 control_stochy PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_stochy_restart -Checking test 023 control_stochy_restart results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_stochy_restart +Checking test 021 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 = 69.700258 - 0: The maximum resident set size (KB) = 231288 + 0: The total amount of wall time = 68.773687 + 0: The maximum resident set size (KB) = 235492 -Test 023 control_stochy_restart PASS +Test 021 control_stochy_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_lndp -Checking test 024 control_lndp results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_lndp +Checking test 022 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1020,15 +908,15 @@ Checking test 024 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 108.641430 - 0: The maximum resident set size (KB) = 466364 + 0: The total amount of wall time = 106.533423 + 0: The maximum resident set size (KB) = 464996 -Test 024 control_lndp PASS +Test 022 control_lndp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_iovr4 -Checking test 025 control_iovr4 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_iovr4 +Checking test 023 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1042,15 +930,15 @@ Checking test 025 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.315436 - 0: The maximum resident set size (KB) = 466108 + 0: The total amount of wall time = 187.581103 + 0: The maximum resident set size (KB) = 465264 -Test 025 control_iovr4 PASS +Test 023 control_iovr4 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_iovr5 -Checking test 026 control_iovr5 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_iovr5 +Checking test 024 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1064,15 +952,15 @@ Checking test 026 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.077246 - 0: The maximum resident set size (KB) = 462068 + 0: The total amount of wall time = 184.804922 + 0: The maximum resident set size (KB) = 463272 -Test 026 control_iovr5 PASS +Test 024 control_iovr5 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_p8 -Checking test 027 control_p8 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_p8 +Checking test 025 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1118,68 +1006,18 @@ Checking test 027 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 215.943009 - 0: The maximum resident set size (KB) = 859444 - -Test 027 control_p8 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_restart_p8 -Checking test 028 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 121.556022 - 0: The maximum resident set size (KB) = 598700 + 0: The total amount of wall time = 274.946918 + 0: The maximum resident set size (KB) = 972120 -Test 028 control_restart_p8 PASS +Test 025 control_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_decomp_p8 -Checking test 029 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_restart_p8 +Checking test 026 control_restart_p8 results .... Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1214,15 +1052,15 @@ Checking test 029 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.675494 - 0: The maximum resident set size (KB) = 842660 + 0: The total amount of wall time = 230.774735 + 0: The maximum resident set size (KB) = 755400 -Test 029 control_decomp_p8 PASS +Test 026 control_restart_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_2threads_p8 -Checking test 030 control_2threads_p8 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_decomp_p8 +Checking test 027 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1264,26 +1102,22 @@ Checking test 030 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 916.312981 - 0: The maximum resident set size (KB) = 930444 + 0: The total amount of wall time = 278.649638 + 0: The maximum resident set size (KB) = 970860 -Test 030 control_2threads_p8 PASS +Test 027 control_decomp_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p7_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_p7_rrtmgp -Checking test 031 control_p7_rrtmgp results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_2threads_p8 +Checking test 028 control_2threads_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/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1318,15 +1152,15 @@ Checking test 031 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 266.099946 - 0: The maximum resident set size (KB) = 601788 + 0: The total amount of wall time = 1030.772054 + 0: The maximum resident set size (KB) = 1113540 -Test 031 control_p7_rrtmgp PASS +Test 028 control_2threads_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_control -Checking test 032 regional_control results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/regional_control +Checking test 029 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1336,58 +1170,58 @@ Checking test 032 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 470.527858 - 0: The maximum resident set size (KB) = 581424 + 0: The total amount of wall time = 460.493424 + 0: The maximum resident set size (KB) = 581796 -Test 032 regional_control PASS +Test 029 regional_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_restart -Checking test 033 regional_restart results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/regional_restart +Checking test 030 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 270.549494 - 0: The maximum resident set size (KB) = 581628 + 0: The total amount of wall time = 329.260813 + 0: The maximum resident set size (KB) = 577540 -Test 033 regional_restart PASS +Test 030 regional_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_control_2dwrtdecomp -Checking test 034 regional_control_2dwrtdecomp results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/regional_control_2dwrtdecomp +Checking test 031 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 860.285109 - 0: The maximum resident set size (KB) = 576208 + 0: The total amount of wall time = 532.216977 + 0: The maximum resident set size (KB) = 579060 -Test 034 regional_control_2dwrtdecomp PASS +Test 031 regional_control_2dwrtdecomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_noquilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_noquilt -Checking test 035 regional_noquilt results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_noquilt +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/regional_noquilt +Checking test 032 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 885.400770 - 0: The maximum resident set size (KB) = 585736 + 0: The total amount of wall time = 569.172887 + 0: The maximum resident set size (KB) = 585196 -Test 035 regional_noquilt PASS +Test 032 regional_noquilt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_hafs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_hafs -Checking test 036 regional_hafs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_hafs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/regional_hafs +Checking test 033 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1395,29 +1229,29 @@ Checking test 036 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 867.292035 - 0: The maximum resident set size (KB) = 584364 + 0: The total amount of wall time = 532.355403 + 0: The maximum resident set size (KB) = 583100 -Test 036 regional_hafs PASS +Test 033 regional_hafs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_netcdf_parallel -Checking test 037 regional_netcdf_parallel results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/regional_netcdf_parallel +Checking test 034 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 866.035808 - 0: The maximum resident set size (KB) = 577312 + 0: The total amount of wall time = 538.092801 + 0: The maximum resident set size (KB) = 577848 -Test 037 regional_netcdf_parallel PASS +Test 034 regional_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_RRTMGP -Checking test 038 regional_RRTMGP results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_RRTMGP +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/regional_RRTMGP +Checking test 035 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1427,15 +1261,15 @@ Checking test 038 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 1009.462690 - 0: The maximum resident set size (KB) = 704764 + 0: The total amount of wall time = 686.802447 + 0: The maximum resident set size (KB) = 697136 -Test 038 regional_RRTMGP PASS +Test 035 regional_RRTMGP PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_3km -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_3km -Checking test 039 regional_3km results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_3km +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/regional_3km +Checking test 036 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1445,15 +1279,15 @@ Checking test 039 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 393.607170 - 0: The maximum resident set size (KB) = 622548 + 0: The total amount of wall time = 384.319653 + 0: The maximum resident set size (KB) = 621596 -Test 039 regional_3km PASS +Test 036 regional_3km PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_control -Checking test 040 rap_control results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_control +Checking test 037 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1499,15 +1333,69 @@ Checking test 040 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 591.926791 - 0: The maximum resident set size (KB) = 834252 + 0: The total amount of wall time = 582.568421 + 0: The maximum resident set size (KB) = 839652 -Test 040 rap_control PASS +Test 037 rap_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_spp_sppt_shum_skeb -Checking test 041 regional_spp_sppt_shum_skeb results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_rrtmgp +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_rrtmgp +Checking test 038 rap_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 644.145979 + 0: The maximum resident set size (KB) = 953648 + +Test 038 rap_rrtmgp PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/regional_spp_sppt_shum_skeb +Checking test 039 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1517,15 +1405,15 @@ Checking test 041 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 1381.758786 - 0: The maximum resident set size (KB) = 924696 + 0: The total amount of wall time = 1403.464762 + 0: The maximum resident set size (KB) = 918088 -Test 041 regional_spp_sppt_shum_skeb PASS +Test 039 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_restart -Checking test 042 rap_restart results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_restart +Checking test 040 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1563,15 +1451,15 @@ Checking test 042 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 256.211926 - 0: The maximum resident set size (KB) = 585880 + 0: The total amount of wall time = 257.541273 + 0: The maximum resident set size (KB) = 587884 -Test 042 rap_restart PASS +Test 040 rap_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_sfcdiff -Checking test 043 rap_sfcdiff results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_sfcdiff +Checking test 041 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1617,15 +1505,15 @@ Checking test 043 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 508.634645 - 0: The maximum resident set size (KB) = 834368 + 0: The total amount of wall time = 579.449663 + 0: The maximum resident set size (KB) = 838112 -Test 043 rap_sfcdiff PASS +Test 041 rap_sfcdiff PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_sfcdiff_restart -Checking test 044 rap_sfcdiff_restart results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_sfcdiff_restart +Checking test 042 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1663,15 +1551,15 @@ Checking test 044 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 260.599731 - 0: The maximum resident set size (KB) = 590320 + 0: The total amount of wall time = 258.077709 + 0: The maximum resident set size (KB) = 590020 -Test 044 rap_sfcdiff_restart PASS +Test 042 rap_sfcdiff_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hrrr_control -Checking test 045 hrrr_control results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/hrrr_control +Checking test 043 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1717,15 +1605,15 @@ Checking test 045 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 492.197455 - 0: The maximum resident set size (KB) = 830820 + 0: The total amount of wall time = 569.099372 + 0: The maximum resident set size (KB) = 834968 -Test 045 hrrr_control PASS +Test 043 hrrr_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rrfs_v1beta -Checking test 046 rrfs_v1beta results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rrfs_v1beta +Checking test 044 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1771,15 +1659,15 @@ Checking test 046 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 502.232002 - 0: The maximum resident set size (KB) = 833172 + 0: The total amount of wall time = 577.001440 + 0: The maximum resident set size (KB) = 833384 -Test 046 rrfs_v1beta PASS +Test 044 rrfs_v1beta PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rrfs_v1nssl -Checking test 047 rrfs_v1nssl results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rrfs_v1nssl +Checking test 045 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1793,15 +1681,15 @@ Checking test 047 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 615.924048 - 0: The maximum resident set size (KB) = 523664 + 0: The total amount of wall time = 701.080756 + 0: The maximum resident set size (KB) = 525228 -Test 047 rrfs_v1nssl PASS +Test 045 rrfs_v1nssl PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rrfs_v1nssl_nohailnoccn -Checking test 048 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rrfs_v1nssl_nohailnoccn +Checking test 046 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1815,15 +1703,15 @@ Checking test 048 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 602.300029 - 0: The maximum resident set size (KB) = 514480 + 0: The total amount of wall time = 605.147828 + 0: The maximum resident set size (KB) = 520376 -Test 048 rrfs_v1nssl_nohailnoccn PASS +Test 046 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rrfs_conus13km_hrrr_warm -Checking test 049 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rrfs_conus13km_hrrr_warm +Checking test 047 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1831,15 +1719,15 @@ Checking test 049 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 237.179881 - 0: The maximum resident set size (KB) = 659336 + 0: The total amount of wall time = 248.435522 + 0: The maximum resident set size (KB) = 654580 -Test 049 rrfs_conus13km_hrrr_warm PASS +Test 047 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rrfs_conus13km_radar_tten_warm -Checking test 050 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rrfs_conus13km_radar_tten_warm +Checking test 048 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1847,15 +1735,15 @@ Checking test 050 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 241.530460 - 0: The maximum resident set size (KB) = 661668 + 0: The total amount of wall time = 246.352242 + 0: The maximum resident set size (KB) = 661788 -Test 050 rrfs_conus13km_radar_tten_warm PASS +Test 048 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_rrtmgp -Checking test 051 control_rrtmgp results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_rrtmgp +Checking test 049 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1865,15 +1753,15 @@ Checking test 051 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 284.614039 - 0: The maximum resident set size (KB) = 590228 + 0: The total amount of wall time = 282.872944 + 0: The maximum resident set size (KB) = 605796 -Test 051 control_rrtmgp PASS +Test 049 control_rrtmgp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_rrtmgp_c192 -Checking test 052 control_rrtmgp_c192 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp_c192 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_rrtmgp_c192 +Checking test 050 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1883,15 +1771,15 @@ Checking test 052 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 742.762088 - 0: The maximum resident set size (KB) = 792792 + 0: The total amount of wall time = 739.372781 + 0: The maximum resident set size (KB) = 811772 -Test 052 control_rrtmgp_c192 PASS +Test 050 control_rrtmgp_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_csawmg -Checking test 053 control_csawmg results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_csawmg +Checking test 051 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1901,15 +1789,15 @@ Checking test 053 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 461.365456 - 0: The maximum resident set size (KB) = 532736 + 0: The total amount of wall time = 450.046419 + 0: The maximum resident set size (KB) = 538068 -Test 053 control_csawmg PASS +Test 051 control_csawmg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_csawmgt -Checking test 054 control_csawmgt results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_csawmgt +Checking test 052 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1919,15 +1807,15 @@ Checking test 054 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 445.567842 - 0: The maximum resident set size (KB) = 530736 + 0: The total amount of wall time = 448.999659 + 0: The maximum resident set size (KB) = 535040 -Test 054 control_csawmgt PASS +Test 052 control_csawmgt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_flake -Checking test 055 control_flake results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_flake +Checking test 053 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1937,15 +1825,15 @@ Checking test 055 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 316.790268 - 0: The maximum resident set size (KB) = 535104 + 0: The total amount of wall time = 317.895333 + 0: The maximum resident set size (KB) = 535492 -Test 055 control_flake PASS +Test 053 control_flake PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_ras -Checking test 056 control_ras results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_ras +Checking test 054 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1955,15 +1843,15 @@ Checking test 056 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 242.618653 - 0: The maximum resident set size (KB) = 494664 + 0: The total amount of wall time = 244.822805 + 0: The maximum resident set size (KB) = 501036 -Test 056 control_ras PASS +Test 054 control_ras PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_thompson -Checking test 057 control_thompson results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_thompson +Checking test 055 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1973,15 +1861,15 @@ Checking test 057 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 306.186366 - 0: The maximum resident set size (KB) = 848032 + 0: The total amount of wall time = 305.502802 + 0: The maximum resident set size (KB) = 854160 -Test 057 control_thompson PASS +Test 055 control_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_thompson_no_aero -Checking test 058 control_thompson_no_aero results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_thompson_no_aero +Checking test 056 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1991,55 +1879,55 @@ Checking test 058 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 291.078407 - 0: The maximum resident set size (KB) = 844352 + 0: The total amount of wall time = 289.937068 + 0: The maximum resident set size (KB) = 844780 -Test 058 control_thompson_no_aero PASS +Test 056 control_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_repro -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_wam_repro -Checking test 059 control_wam results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wam_repro +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_wam_repro +Checking test 057 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 168.397620 - 0: The maximum resident set size (KB) = 230560 + 0: The total amount of wall time = 168.465803 + 0: The maximum resident set size (KB) = 229524 -Test 059 control_wam PASS +Test 057 control_wam PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_debug -Checking test 060 control_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_debug +Checking test 058 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 = 191.333782 - 0: The maximum resident set size (KB) = 632140 + 0: The total amount of wall time = 197.935244 + 0: The maximum resident set size (KB) = 624896 -Test 060 control_debug PASS +Test 058 control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_2threads_debug -Checking test 061 control_2threads_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_2threads_debug +Checking test 059 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 379.698219 - 0: The maximum resident set size (KB) = 680720 + 0: The total amount of wall time = 374.609970 + 0: The maximum resident set size (KB) = 683192 -Test 061 control_2threads_debug PASS +Test 059 control_2threads_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_CubedSphereGrid_debug -Checking test 062 control_CubedSphereGrid_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_CubedSphereGrid_debug +Checking test 060 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2065,459 +1953,459 @@ Checking test 062 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 207.645545 - 0: The maximum resident set size (KB) = 632236 + 0: The total amount of wall time = 222.300509 + 0: The maximum resident set size (KB) = 626120 -Test 062 control_CubedSphereGrid_debug PASS +Test 060 control_CubedSphereGrid_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_wrtGauss_netcdf_parallel_debug -Checking test 063 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_wrtGauss_netcdf_parallel_debug +Checking test 061 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.428156 - 0: The maximum resident set size (KB) = 625864 + 0: The total amount of wall time = 200.922695 + 0: The maximum resident set size (KB) = 625536 -Test 063 control_wrtGauss_netcdf_parallel_debug PASS +Test 061 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_stochy_debug -Checking test 064 control_stochy_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_stochy_debug +Checking test 062 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 = 219.362733 - 0: The maximum resident set size (KB) = 633600 + 0: The total amount of wall time = 224.166447 + 0: The maximum resident set size (KB) = 631364 -Test 064 control_stochy_debug PASS +Test 062 control_stochy_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_lndp_debug -Checking test 065 control_lndp_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_lndp_debug +Checking test 063 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.497718 - 0: The maximum resident set size (KB) = 638508 + 0: The total amount of wall time = 202.475351 + 0: The maximum resident set size (KB) = 634424 -Test 065 control_lndp_debug PASS +Test 063 control_lndp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_rrtmgp_debug -Checking test 066 control_rrtmgp_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_rrtmgp_debug +Checking test 064 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.057583 - 0: The maximum resident set size (KB) = 730868 + 0: The total amount of wall time = 211.385865 + 0: The maximum resident set size (KB) = 747584 -Test 066 control_rrtmgp_debug PASS +Test 064 control_rrtmgp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_csawmg_debug -Checking test 067 control_csawmg_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_csawmg_debug +Checking test 065 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 305.496322 - 0: The maximum resident set size (KB) = 669760 + 0: The total amount of wall time = 304.902656 + 0: The maximum resident set size (KB) = 666860 -Test 067 control_csawmg_debug PASS +Test 065 control_csawmg_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_csawmgt_debug -Checking test 068 control_csawmgt_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_csawmgt_debug +Checking test 066 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.649412 - 0: The maximum resident set size (KB) = 672816 + 0: The total amount of wall time = 299.611322 + 0: The maximum resident set size (KB) = 668540 -Test 068 control_csawmgt_debug PASS +Test 066 control_csawmgt_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_ras_debug -Checking test 069 control_ras_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_ras_debug +Checking test 067 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.212581 - 0: The maximum resident set size (KB) = 641888 + 0: The total amount of wall time = 197.836450 + 0: The maximum resident set size (KB) = 638056 -Test 069 control_ras_debug PASS +Test 067 control_ras_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_diag_debug -Checking test 070 control_diag_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_diag_debug +Checking test 068 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 = 205.978020 - 0: The maximum resident set size (KB) = 685968 + 0: The total amount of wall time = 201.284357 + 0: The maximum resident set size (KB) = 684492 -Test 070 control_diag_debug PASS +Test 068 control_diag_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_debug_p8 -Checking test 071 control_debug_p8 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_debug_p8 +Checking test 069 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 = 213.201884 - 0: The maximum resident set size (KB) = 1019024 + 0: The total amount of wall time = 231.501990 + 0: The maximum resident set size (KB) = 1131532 -Test 071 control_debug_p8 PASS +Test 069 control_debug_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_thompson_debug -Checking test 072 control_thompson_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_thompson_debug +Checking test 070 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.316930 - 0: The maximum resident set size (KB) = 993172 + 0: The total amount of wall time = 224.052884 + 0: The maximum resident set size (KB) = 988808 -Test 072 control_thompson_debug PASS +Test 070 control_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_thompson_no_aero_debug -Checking test 073 control_thompson_no_aero_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_thompson_no_aero_debug +Checking test 071 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 217.982168 - 0: The maximum resident set size (KB) = 987560 + 0: The total amount of wall time = 216.420440 + 0: The maximum resident set size (KB) = 980144 -Test 073 control_thompson_no_aero_debug PASS +Test 071 control_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug_extdiag -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_thompson_extdiag_debug -Checking test 074 control_thompson_extdiag_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_debug_extdiag +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_thompson_extdiag_debug +Checking test 072 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.517859 - 0: The maximum resident set size (KB) = 1022000 + 0: The total amount of wall time = 238.265953 + 0: The maximum resident set size (KB) = 1014468 -Test 074 control_thompson_extdiag_debug PASS +Test 072 control_thompson_extdiag_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_thompson_progcld_thompson_debug -Checking test 075 control_thompson_progcld_thompson_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_thompson_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_thompson_progcld_thompson_debug +Checking test 073 control_thompson_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 = 226.462881 - 0: The maximum resident set size (KB) = 991000 + 0: The total amount of wall time = 224.566150 + 0: The maximum resident set size (KB) = 988324 -Test 075 control_thompson_progcld_thompson_debug PASS +Test 073 control_thompson_progcld_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_debug -Checking test 076 regional_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/fv3_regional_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/regional_debug +Checking test 074 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 = 330.989689 - 0: The maximum resident set size (KB) = 615880 + 0: The total amount of wall time = 324.433406 + 0: The maximum resident set size (KB) = 599888 -Test 076 regional_debug PASS +Test 074 regional_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_control_debug -Checking test 077 rap_control_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_control_debug +Checking test 075 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 = 350.332286 - 0: The maximum resident set size (KB) = 998868 + 0: The total amount of wall time = 348.785170 + 0: The maximum resident set size (KB) = 993640 -Test 077 rap_control_debug PASS +Test 075 rap_control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_unified_drag_suite_debug -Checking test 078 rap_unified_drag_suite_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_unified_drag_suite_debug +Checking test 076 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 = 349.665835 - 0: The maximum resident set size (KB) = 994712 + 0: The total amount of wall time = 344.971927 + 0: The maximum resident set size (KB) = 996096 -Test 078 rap_unified_drag_suite_debug PASS +Test 076 rap_unified_drag_suite_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_diag_debug -Checking test 079 rap_diag_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_diag_debug +Checking test 077 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 = 376.664497 - 0: The maximum resident set size (KB) = 1078804 + 0: The total amount of wall time = 374.124304 + 0: The maximum resident set size (KB) = 1079536 -Test 079 rap_diag_debug PASS +Test 077 rap_diag_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_cires_ugwp_debug -Checking test 080 rap_cires_ugwp_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_cires_ugwp_debug +Checking test 078 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 = 361.203172 - 0: The maximum resident set size (KB) = 1002472 + 0: The total amount of wall time = 356.363573 + 0: The maximum resident set size (KB) = 1001896 -Test 080 rap_cires_ugwp_debug PASS +Test 078 rap_cires_ugwp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_unified_ugwp_debug -Checking test 081 rap_unified_ugwp_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_unified_ugwp_debug +Checking test 079 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 = 360.330752 - 0: The maximum resident set size (KB) = 996960 + 0: The total amount of wall time = 357.111455 + 0: The maximum resident set size (KB) = 999676 -Test 081 rap_unified_ugwp_debug PASS +Test 079 rap_unified_ugwp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_lndp_debug -Checking test 082 rap_lndp_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_lndp_debug +Checking test 080 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 = 352.180857 - 0: The maximum resident set size (KB) = 994176 + 0: The total amount of wall time = 350.970651 + 0: The maximum resident set size (KB) = 999580 -Test 082 rap_lndp_debug PASS +Test 080 rap_lndp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_flake_debug -Checking test 083 rap_flake_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_flake_debug +Checking test 081 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 = 352.085145 - 0: The maximum resident set size (KB) = 994404 + 0: The total amount of wall time = 348.841644 + 0: The maximum resident set size (KB) = 995264 -Test 083 rap_flake_debug PASS +Test 081 rap_flake_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_progcld_thompson_debug -Checking test 084 rap_progcld_thompson_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_progcld_thompson_debug +Checking test 082 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 = 351.310185 - 0: The maximum resident set size (KB) = 995084 + 0: The total amount of wall time = 346.099749 + 0: The maximum resident set size (KB) = 1000948 -Test 084 rap_progcld_thompson_debug PASS +Test 082 rap_progcld_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_noah_debug -Checking test 085 rap_noah_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_noah_debug +Checking test 083 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 = 348.126934 - 0: The maximum resident set size (KB) = 997824 + 0: The total amount of wall time = 347.264034 + 0: The maximum resident set size (KB) = 992952 -Test 085 rap_noah_debug PASS +Test 083 rap_noah_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_rrtmgp_debug -Checking test 086 rap_rrtmgp_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_rrtmgp_debug +Checking test 084 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 627.433507 - 0: The maximum resident set size (KB) = 1108512 + 0: The total amount of wall time = 589.857986 + 0: The maximum resident set size (KB) = 1115552 -Test 086 rap_rrtmgp_debug PASS +Test 084 rap_rrtmgp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_sfcdiff_debug -Checking test 087 rap_sfcdiff_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_sfcdiff_debug +Checking test 085 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 = 351.059548 - 0: The maximum resident set size (KB) = 993984 + 0: The total amount of wall time = 345.839887 + 0: The maximum resident set size (KB) = 1000020 -Test 087 rap_sfcdiff_debug PASS +Test 085 rap_sfcdiff_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 088 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 086 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 = 630.547977 - 0: The maximum resident set size (KB) = 997432 + 0: The total amount of wall time = 579.564326 + 0: The maximum resident set size (KB) = 997240 -Test 088 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 086 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rrfs_v1beta_debug -Checking test 089 rrfs_v1beta_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/rrfs_v1beta_debug +Checking test 087 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 = 346.939517 - 0: The maximum resident set size (KB) = 994336 + 0: The total amount of wall time = 347.234651 + 0: The maximum resident set size (KB) = 992384 -Test 089 rrfs_v1beta_debug PASS +Test 087 rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_wam_debug -Checking test 090 control_wam_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_wam_debug +Checking test 088 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 367.257693 - 0: The maximum resident set size (KB) = 256680 + 0: The total amount of wall time = 367.160781 + 0: The maximum resident set size (KB) = 255072 -Test 090 control_wam_debug PASS +Test 088 control_wam_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_atm -Checking test 091 hafs_regional_atm results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/hafs_regional_atm +Checking test 089 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1194.829489 - 0: The maximum resident set size (KB) = 713444 + 0: The total amount of wall time = 1190.088388 + 0: The maximum resident set size (KB) = 710820 -Test 091 hafs_regional_atm PASS +Test 089 hafs_regional_atm PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_atm_thompson_gfdlsf -Checking test 092 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/hafs_regional_atm_thompson_gfdlsf +Checking test 090 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 1295.725691 - 0: The maximum resident set size (KB) = 1062036 + 0: The total amount of wall time = 1290.860466 + 0: The maximum resident set size (KB) = 1067280 -Test 092 hafs_regional_atm_thompson_gfdlsf PASS +Test 090 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_atm_ocn -Checking test 093 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/hafs_regional_atm_ocn +Checking test 091 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 524.607912 - 0: The maximum resident set size (KB) = 716764 + 0: The total amount of wall time = 471.409263 + 0: The maximum resident set size (KB) = 716288 -Test 093 hafs_regional_atm_ocn PASS +Test 091 hafs_regional_atm_ocn PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_atm_wav -Checking test 094 hafs_regional_atm_wav results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/hafs_regional_atm_wav +Checking test 092 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 1198.427533 - 0: The maximum resident set size (KB) = 714864 + 0: The total amount of wall time = 1197.107770 + 0: The maximum resident set size (KB) = 715692 -Test 094 hafs_regional_atm_wav PASS +Test 092 hafs_regional_atm_wav PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_atm_ocn_wav -Checking test 095 hafs_regional_atm_ocn_wav results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/hafs_regional_atm_ocn_wav +Checking test 093 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2525,149 +2413,149 @@ Checking test 095 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 1299.692375 - 0: The maximum resident set size (KB) = 728952 + 0: The total amount of wall time = 1307.504046 + 0: The maximum resident set size (KB) = 727168 -Test 095 hafs_regional_atm_ocn_wav PASS +Test 093 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_docn -Checking test 096 hafs_regional_docn results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/hafs_regional_docn +Checking test 094 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 525.015172 - 0: The maximum resident set size (KB) = 720476 + 0: The total amount of wall time = 460.549814 + 0: The maximum resident set size (KB) = 719296 -Test 096 hafs_regional_docn PASS +Test 094 hafs_regional_docn PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_docn_oisst -Checking test 097 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/hafs_regional_docn_oisst +Checking test 095 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 528.543237 - 0: The maximum resident set size (KB) = 719852 + 0: The total amount of wall time = 465.348188 + 0: The maximum resident set size (KB) = 724296 -Test 097 hafs_regional_docn_oisst PASS +Test 095 hafs_regional_docn_oisst PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_datm_cdeps -Checking test 098 hafs_regional_datm_cdeps results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/hafs_regional_datm_cdeps +Checking test 096 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 = 1455.467516 - 0: The maximum resident set size (KB) = 855524 + 0: The total amount of wall time = 1250.607139 + 0: The maximum resident set size (KB) = 846520 -Test 098 hafs_regional_datm_cdeps PASS +Test 096 hafs_regional_datm_cdeps PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_control_cfsr -Checking test 099 datm_cdeps_control_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_control_cfsr +Checking test 097 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 196.853669 - 0: The maximum resident set size (KB) = 721516 + 0: The total amount of wall time = 198.706197 + 0: The maximum resident set size (KB) = 725412 -Test 099 datm_cdeps_control_cfsr PASS +Test 097 datm_cdeps_control_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_restart_cfsr -Checking test 100 datm_cdeps_restart_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_restart_cfsr +Checking test 098 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.941762 - 0: The maximum resident set size (KB) = 723748 + 0: The total amount of wall time = 117.660428 + 0: The maximum resident set size (KB) = 724772 -Test 100 datm_cdeps_restart_cfsr PASS +Test 098 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_control_gefs -Checking test 101 datm_cdeps_control_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_control_gefs +Checking test 099 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 193.260310 - 0: The maximum resident set size (KB) = 623880 + 0: The total amount of wall time = 194.069710 + 0: The maximum resident set size (KB) = 626660 -Test 101 datm_cdeps_control_gefs PASS +Test 099 datm_cdeps_control_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_iau_gefs -Checking test 102 datm_cdeps_iau_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_iau_gefs +Checking test 100 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 196.085132 - 0: The maximum resident set size (KB) = 624916 + 0: The total amount of wall time = 200.171430 + 0: The maximum resident set size (KB) = 625608 -Test 102 datm_cdeps_iau_gefs PASS +Test 100 datm_cdeps_iau_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_stochy_gefs -Checking test 103 datm_cdeps_stochy_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_stochy_gefs +Checking test 101 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 198.143177 - 0: The maximum resident set size (KB) = 625824 + 0: The total amount of wall time = 194.756613 + 0: The maximum resident set size (KB) = 624916 -Test 103 datm_cdeps_stochy_gefs PASS +Test 101 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_bulk_cfsr -Checking test 104 datm_cdeps_bulk_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_bulk_cfsr +Checking test 102 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.409862 - 0: The maximum resident set size (KB) = 723716 + 0: The total amount of wall time = 199.015965 + 0: The maximum resident set size (KB) = 724048 -Test 104 datm_cdeps_bulk_cfsr PASS +Test 102 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_bulk_gefs -Checking test 105 datm_cdeps_bulk_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_bulk_gefs +Checking test 103 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 340.912270 - 0: The maximum resident set size (KB) = 623132 + 0: The total amount of wall time = 193.182806 + 0: The maximum resident set size (KB) = 624956 -Test 105 datm_cdeps_bulk_gefs PASS +Test 103 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_mx025_cfsr -Checking test 106 datm_cdeps_mx025_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_mx025_cfsr +Checking test 104 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2675,15 +2563,15 @@ Checking test 106 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 = 647.515480 - 0: The maximum resident set size (KB) = 559616 + 0: The total amount of wall time = 422.779520 + 0: The maximum resident set size (KB) = 559868 -Test 106 datm_cdeps_mx025_cfsr PASS +Test 104 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_mx025_gefs -Checking test 107 datm_cdeps_mx025_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_mx025_gefs +Checking test 105 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2691,65 +2579,65 @@ Checking test 107 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 627.514573 - 0: The maximum resident set size (KB) = 527392 + 0: The total amount of wall time = 420.372144 + 0: The maximum resident set size (KB) = 530308 -Test 107 datm_cdeps_mx025_gefs PASS +Test 105 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_multiple_files_cfsr -Checking test 108 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_multiple_files_cfsr +Checking test 106 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 = 336.896706 - 0: The maximum resident set size (KB) = 724532 + 0: The total amount of wall time = 196.663436 + 0: The maximum resident set size (KB) = 722180 -Test 108 datm_cdeps_multiple_files_cfsr PASS +Test 106 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_3072x1536_cfsr -Checking test 109 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_3072x1536_cfsr +Checking test 107 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 416.076097 - 0: The maximum resident set size (KB) = 1837780 + 0: The total amount of wall time = 274.377224 + 0: The maximum resident set size (KB) = 1836320 -Test 109 datm_cdeps_3072x1536_cfsr PASS +Test 107 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_gfs -Checking test 110 datm_cdeps_gfs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_gfs +Checking test 108 datm_cdeps_gfs results .... Comparing RESTART/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 = 544.593311 - 0: The maximum resident set size (KB) = 1840624 + 0: The total amount of wall time = 271.663676 + 0: The maximum resident set size (KB) = 1837100 -Test 110 datm_cdeps_gfs PASS +Test 108 datm_cdeps_gfs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_debug_cfsr -Checking test 111 datm_cdeps_debug_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/datm_cdeps_debug_cfsr +Checking test 109 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 751.843793 - 0: The maximum resident set size (KB) = 733368 + 0: The total amount of wall time = 577.700265 + 0: The maximum resident set size (KB) = 732012 -Test 111 datm_cdeps_debug_cfsr PASS +Test 109 datm_cdeps_debug_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_atmwav -Checking test 112 control_atmwav results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_17131/control_atmwav +Checking test 110 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2792,12 +2680,12 @@ Checking test 112 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 272.507105 - 0: The maximum resident set size (KB) = 487536 + 0: The total amount of wall time = 116.166254 + 0: The maximum resident set size (KB) = 487916 -Test 112 control_atmwav PASS +Test 110 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 4 17:56:28 GMT 2022 -Elapsed time: 02h:24m:33s. Have a nice day! +Thu Apr 7 22:29:19 GMT 2022 +Elapsed time: 01h:26m:26s. Have a nice day! From dd82618b4d38ef80016de95a4eff4428cb54ee41 Mon Sep 17 00:00:00 2001 From: MinsukJi-NOAA Date: Fri, 8 Apr 2022 13:06:41 +0000 Subject: [PATCH 55/57] Add wcoss dell RT log: all tests passed --- tests/RegressionTests_wcoss_dell_p3.log | 1875 ++++++++++------------- 1 file changed, 812 insertions(+), 1063 deletions(-) diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index e6dfd18e07..306ea92d8c 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,24 +1,24 @@ -Tue Apr 5 21:17:35 UTC 2022 +Thu Apr 7 18:09:45 UTC 2022 Start Regression test -Compile 001 elapsed time 2132 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 576 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 1175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 1222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 792 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 832 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 342 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 355 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 1419 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1425 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 851 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 312 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1128 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_control_p8 +Compile 001 elapsed time 2041 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 580 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1092 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 1203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 1226 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 802 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 725 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 374 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 389 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 347 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 1458 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1404 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 940 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 317 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 1114 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 389.858283 -[0] The maximum resident set size (KB) = 1157100 +[0] The total amount of wall time = 442.007320 +[0] The maximum resident set size (KB) = 1268124 Test 001 cpld_control_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_2threads_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 422.952073 -[0] The maximum resident set size (KB) = 1569148 +[0] The total amount of wall time = 484.630294 +[0] The maximum resident set size (KB) = 1749824 Test 002 cpld_2threads_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_decomp_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 385.724867 -[0] The maximum resident set size (KB) = 1149460 +[0] The total amount of wall time = 448.829210 +[0] The maximum resident set size (KB) = 1260672 Test 003 cpld_decomp_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_mpi_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -267,119 +267,15 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 324.893894 -[0] The maximum resident set size (KB) = 1050572 +[0] The total amount of wall time = 363.398709 +[0] The maximum resident set size (KB) = 1156700 Test 004 cpld_mpi_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_bmark_p7 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_bmark_p7 -Checking test 005 cpld_bmark_p7 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -[0] The total amount of wall time = 1030.880922 -[0] The maximum resident set size (KB) = 1215492 - -Test 005 cpld_bmark_p7 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_bmark_p7_rrtmgp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_bmark_p7_rrtmgp -Checking test 006 cpld_bmark_p7_rrtmgp results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -[0] The total amount of wall time = 1124.927385 -[0] The maximum resident set size (KB) = 1345128 - -Test 006 cpld_bmark_p7_rrtmgp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_bmark_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_bmark_p8 -Checking test 007 cpld_bmark_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/cpld_bmark_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/cpld_bmark_p8 +Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -424,68 +320,15 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1164.557080 -[0] The maximum resident set size (KB) = 2826052 +[0] The total amount of wall time = 1200.000059 +[0] The maximum resident set size (KB) = 3018404 -Test 007 cpld_bmark_p8 PASS +Test 005 cpld_bmark_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_bmark_p8_rrtmgp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_bmark_p8_rrtmgp -Checking test 008 cpld_bmark_p8_rrtmgp results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -[0] The total amount of wall time = 1200.765196 -[0] The maximum resident set size (KB) = 3018068 - -Test 008 cpld_bmark_p8_rrtmgp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_control_c96_p8 -Checking test 009 cpld_control_c96_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/cpld_control_c96_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/cpld_control_c96_p8 +Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -547,15 +390,15 @@ Checking test 009 cpld_control_c96_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 = 377.587529 -[0] The maximum resident set size (KB) = 1150432 +[0] The total amount of wall time = 446.029234 +[0] The maximum resident set size (KB) = 1264876 -Test 009 cpld_control_c96_p8 PASS +Test 006 cpld_control_c96_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_restart_c96_p8 -Checking test 010 cpld_restart_c96_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/cpld_control_c96_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/cpld_restart_c96_p8 +Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -605,15 +448,15 @@ Checking test 010 cpld_restart_c96_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 = 209.657159 -[0] The maximum resident set size (KB) = 1116336 +[0] The total amount of wall time = 238.538492 +[0] The maximum resident set size (KB) = 1254092 -Test 010 cpld_restart_c96_p8 PASS +Test 007 cpld_restart_c96_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/cpld_control_c192_p8 +Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -663,15 +506,15 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 1698.531186 -[0] The maximum resident set size (KB) = 1564520 +[0] The total amount of wall time = 1441.369729 +[0] The maximum resident set size (KB) = 1408464 -Test 011 cpld_control_c192_p8 PASS +Test 008 cpld_control_c192_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/cpld_restart_c192_p8 +Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -721,15 +564,15 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 1119.353260 -[0] The maximum resident set size (KB) = 1791472 +[0] The total amount of wall time = 959.852292 +[0] The maximum resident set size (KB) = 1600372 -Test 012 cpld_restart_c192_p8 PASS +Test 009 cpld_restart_c192_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_control_c384_p8 -Checking test 013 cpld_control_c384_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/cpld_control_c384_p8 +Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -772,15 +615,15 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 1282.172582 -[0] The maximum resident set size (KB) = 2817672 +[0] The total amount of wall time = 1310.896342 +[0] The maximum resident set size (KB) = 3017728 -Test 013 cpld_control_c384_p8 PASS +Test 010 cpld_control_c384_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_restart_c384_p8 -Checking test 014 cpld_restart_c384_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/cpld_restart_c384_p8 +Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK @@ -823,15 +666,15 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 707.614520 -[0] The maximum resident set size (KB) = 2782248 +[0] The total amount of wall time = 771.864306 +[0] The maximum resident set size (KB) = 3046756 -Test 014 cpld_restart_c384_p8 PASS +Test 011 cpld_restart_c384_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/cpld_debug_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/cpld_debug_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/cpld_debug_p8 +Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -881,15 +724,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 1157.561970 -[0] The maximum resident set size (KB) = 1248128 +[0] The total amount of wall time = 1270.492918 +[0] The maximum resident set size (KB) = 1367480 -Test 015 cpld_debug_p8 PASS +Test 012 cpld_debug_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control -Checking test 016 control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control +Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -935,15 +778,15 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 147.118747 -[0] The maximum resident set size (KB) = 465668 +[0] The total amount of wall time = 148.079083 +[0] The maximum resident set size (KB) = 469740 -Test 016 control PASS +Test 013 control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_decomp -Checking test 017 control_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_decomp +Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -985,29 +828,29 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 154.455080 -[0] The maximum resident set size (KB) = 459476 +[0] The total amount of wall time = 156.183786 +[0] The maximum resident set size (KB) = 463524 -Test 017 control_decomp PASS +Test 014 control_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_2dwrtdecomp -Checking test 018 control_2dwrtdecomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_2dwrtdecomp +Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 141.285701 -[0] The maximum resident set size (KB) = 466232 +[0] The total amount of wall time = 144.966421 +[0] The maximum resident set size (KB) = 468088 -Test 018 control_2dwrtdecomp PASS +Test 015 control_2dwrtdecomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_2threads -Checking test 019 control_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_2threads +Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1049,15 +892,15 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 135.030153 -[0] The maximum resident set size (KB) = 514948 +[0] The total amount of wall time = 136.883828 +[0] The maximum resident set size (KB) = 522836 -Test 019 control_2threads PASS +Test 016 control_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_restart -Checking test 020 control_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_restart +Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1095,15 +938,15 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 77.721480 -[0] The maximum resident set size (KB) = 207124 +[0] The total amount of wall time = 79.088033 +[0] The maximum resident set size (KB) = 209640 -Test 020 control_restart PASS +Test 017 control_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_fhzero -Checking test 021 control_fhzero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_fhzero +Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1145,15 +988,15 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 138.686818 -[0] The maximum resident set size (KB) = 463980 +[0] The total amount of wall time = 140.323703 +[0] The maximum resident set size (KB) = 469360 -Test 021 control_fhzero PASS +Test 018 control_fhzero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_CubedSphereGrid +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1179,15 +1022,15 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -[0] The total amount of wall time = 142.972680 -[0] The maximum resident set size (KB) = 466780 +[0] The total amount of wall time = 142.139041 +[0] The maximum resident set size (KB) = 465844 -Test 022 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_latlon -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_latlon +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1197,33 +1040,33 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 143.633223 -[0] The maximum resident set size (KB) = 460164 +[0] The total amount of wall time = 146.585761 +[0] The maximum resident set size (KB) = 466456 -Test 023 control_latlon PASS +Test 020 control_latlon PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 153.245176 -[0] The maximum resident set size (KB) = 462628 +[0] The total amount of wall time = 152.511923 +[0] The maximum resident set size (KB) = 466520 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_c48 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_c48 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1261,15 +1104,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 455.811266 -[0] The maximum resident set size (KB) = 656088 +[0] The total amount of wall time = 458.108055 +[0] The maximum resident set size (KB) = 658744 -Test 025 control_c48 PASS +Test 022 control_c48 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_c192 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1279,15 +1122,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 569.654294 -[0] The maximum resident set size (KB) = 556324 +[0] The total amount of wall time = 574.632346 +[0] The maximum resident set size (KB) = 566072 -Test 026 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_c384 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_c384 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1297,15 +1140,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 1074.506839 -[0] The maximum resident set size (KB) = 818684 +[0] The total amount of wall time = 1077.726468 +[0] The maximum resident set size (KB) = 823236 -Test 027 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_c384gdas -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_c384gdas +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1347,15 +1190,15 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 944.096282 -[0] The maximum resident set size (KB) = 965372 +[0] The total amount of wall time = 935.333334 +[0] The maximum resident set size (KB) = 968684 -Test 028 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_stochy -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_stochy +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1365,29 +1208,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 95.070301 -[0] The maximum resident set size (KB) = 467216 +[0] The total amount of wall time = 95.553022 +[0] The maximum resident set size (KB) = 473692 -Test 029 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_stochy -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_stochy +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 52.880920 -[0] The maximum resident set size (KB) = 262236 +[0] The total amount of wall time = 56.347570 +[0] The maximum resident set size (KB) = 263144 -Test 030 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_lndp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_lndp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1397,15 +1240,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 87.413286 -[0] The maximum resident set size (KB) = 465504 +[0] The total amount of wall time = 88.229770 +[0] The maximum resident set size (KB) = 468056 -Test 031 control_lndp PASS +Test 028 control_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_iovr4 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_iovr4 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1419,15 +1262,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 151.123705 -[0] The maximum resident set size (KB) = 467208 +[0] The total amount of wall time = 146.950085 +[0] The maximum resident set size (KB) = 467140 -Test 032 control_iovr4 PASS +Test 029 control_iovr4 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_iovr5 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_iovr5 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,15 +1284,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 145.773121 -[0] The maximum resident set size (KB) = 466024 +[0] The total amount of wall time = 150.817629 +[0] The maximum resident set size (KB) = 463996 -Test 033 control_iovr5 PASS +Test 030 control_iovr5 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1495,118 +1338,18 @@ Checking test 034 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 175.733139 -[0] The maximum resident set size (KB) = 845440 - -Test 034 control_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_restart_p8 -Checking test 035 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 93.337253 -[0] The maximum resident set size (KB) = 594724 +[0] The total amount of wall time = 226.556018 +[0] The maximum resident set size (KB) = 963056 -Test 035 control_restart_p8 PASS +Test 031 control_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_decomp_p8 -Checking test 036 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_restart_p8 +Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 181.387103 -[0] The maximum resident set size (KB) = 841700 - -Test 036 control_decomp_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_2threads_p8 -Checking test 037 control_2threads_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1641,26 +1384,22 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 163.734978 -[0] The maximum resident set size (KB) = 919908 +[0] The total amount of wall time = 121.822889 +[0] The maximum resident set size (KB) = 758784 -Test 037 control_2threads_p8 PASS +Test 032 control_restart_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p7_rrtmgp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_p7_rrtmgp -Checking test 038 control_p7_rrtmgp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_decomp_p8 +Checking test 033 control_decomp_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/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1695,26 +1434,22 @@ Checking test 038 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 227.183196 -[0] The maximum resident set size (KB) = 604648 +[0] The total amount of wall time = 233.221079 +[0] The maximum resident set size (KB) = 959844 -Test 038 control_p7_rrtmgp PASS +Test 033 control_decomp_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_p8_rrtmgp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_p8_rrtmgp -Checking test 039 control_p8_rrtmgp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_2threads_p8 +Checking test 034 control_2threads_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/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1749,15 +1484,15 @@ Checking test 039 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 232.548367 -[0] The maximum resident set size (KB) = 962152 +[0] The total amount of wall time = 220.353831 +[0] The maximum resident set size (KB) = 1104232 -Test 039 control_p8_rrtmgp PASS +Test 034 control_2threads_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_control -Checking test 040 regional_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/regional_control +Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1767,58 +1502,58 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 363.405772 -[0] The maximum resident set size (KB) = 579612 +[0] The total amount of wall time = 367.973644 +[0] The maximum resident set size (KB) = 581244 -Test 040 regional_control PASS +Test 035 regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_restart -Checking test 041 regional_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/regional_restart +Checking test 036 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 199.609112 -[0] The maximum resident set size (KB) = 581800 +[0] The total amount of wall time = 199.867987 +[0] The maximum resident set size (KB) = 585836 -Test 041 regional_restart PASS +Test 036 regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_control_2dwrtdecomp -Checking test 042 regional_control_2dwrtdecomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/regional_control_2dwrtdecomp +Checking test 037 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 359.689884 -[0] The maximum resident set size (KB) = 581200 +[0] The total amount of wall time = 365.749734 +[0] The maximum resident set size (KB) = 579620 -Test 042 regional_control_2dwrtdecomp PASS +Test 037 regional_control_2dwrtdecomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_noquilt -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_noquilt -Checking test 043 regional_noquilt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/fv3_regional_noquilt +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/regional_noquilt +Checking test 038 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 390.026416 -[0] The maximum resident set size (KB) = 606856 +[0] The total amount of wall time = 395.722388 +[0] The maximum resident set size (KB) = 611592 -Test 043 regional_noquilt PASS +Test 038 regional_noquilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_2threads -Checking test 044 regional_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/regional_2threads +Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1828,15 +1563,15 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 216.533380 -[0] The maximum resident set size (KB) = 578708 +[0] The total amount of wall time = 216.429088 +[0] The maximum resident set size (KB) = 583220 -Test 044 regional_2threads PASS +Test 039 regional_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_hafs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_hafs -Checking test 045 regional_hafs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/fv3_regional_hafs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/regional_hafs +Checking test 040 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1844,29 +1579,29 @@ Checking test 045 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 361.799392 -[0] The maximum resident set size (KB) = 580728 +[0] The total amount of wall time = 365.204271 +[0] The maximum resident set size (KB) = 584180 -Test 045 regional_hafs PASS +Test 040 regional_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_netcdf_parallel -Checking test 046 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/fv3_regional_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/regional_netcdf_parallel +Checking test 041 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 363.272738 -[0] The maximum resident set size (KB) = 577556 +[0] The total amount of wall time = 364.039877 +[0] The maximum resident set size (KB) = 577544 -Test 046 regional_netcdf_parallel PASS +Test 041 regional_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_RRTMGP -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_RRTMGP -Checking test 047 regional_RRTMGP results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/fv3_regional_RRTMGP +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/regional_RRTMGP +Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1876,15 +1611,15 @@ Checking test 047 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 519.920834 -[0] The maximum resident set size (KB) = 695432 +[0] The total amount of wall time = 512.893849 +[0] The maximum resident set size (KB) = 695164 -Test 047 regional_RRTMGP PASS +Test 042 regional_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_3km -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_3km -Checking test 048 regional_3km results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/fv3_regional_3km +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1894,15 +1629,15 @@ Checking test 048 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -[0] The total amount of wall time = 298.785449 -[0] The maximum resident set size (KB) = 608072 +[0] The total amount of wall time = 297.203379 +[0] The maximum resident set size (KB) = 609716 -Test 048 regional_3km PASS +Test 043 regional_3km PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_control -Checking test 049 rap_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1948,15 +1683,15 @@ Checking test 049 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 409.498744 -[0] The maximum resident set size (KB) = 839440 +[0] The total amount of wall time = 413.235645 +[0] The maximum resident set size (KB) = 834640 -Test 049 rap_control PASS +Test 044 rap_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_rrtmgp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_rrtmgp -Checking test 050 rap_rrtmgp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_rrtmgp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2002,15 +1737,15 @@ Checking test 050 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 469.991804 -[0] The maximum resident set size (KB) = 950704 +[0] The total amount of wall time = 468.716673 +[0] The maximum resident set size (KB) = 947028 -Test 050 rap_rrtmgp PASS +Test 045 rap_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/regional_spp_sppt_shum_skeb -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_spp_sppt_shum_skeb -Checking test 051 regional_spp_sppt_shum_skeb results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/regional_spp_sppt_shum_skeb +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2020,15 +1755,15 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -[0] The total amount of wall time = 251.874468 -[0] The maximum resident set size (KB) = 926776 +[0] The total amount of wall time = 254.810402 +[0] The maximum resident set size (KB) = 936652 -Test 051 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_2threads -Checking test 052 rap_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2074,15 +1809,15 @@ Checking test 052 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 388.579902 -[0] The maximum resident set size (KB) = 901372 +[0] The total amount of wall time = 395.769975 +[0] The maximum resident set size (KB) = 900012 -Test 052 rap_2threads PASS +Test 047 rap_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_restart -Checking test 053 rap_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2120,15 +1855,15 @@ Checking test 053 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 209.742503 -[0] The maximum resident set size (KB) = 586008 +[0] The total amount of wall time = 209.550300 +[0] The maximum resident set size (KB) = 590636 -Test 053 rap_restart PASS +Test 048 rap_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_sfcdiff -Checking test 054 rap_sfcdiff results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2174,15 +1909,15 @@ Checking test 054 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 418.773233 -[0] The maximum resident set size (KB) = 835528 +[0] The total amount of wall time = 425.222063 +[0] The maximum resident set size (KB) = 835892 -Test 054 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_sfcdiff_restart -Checking test 055 rap_sfcdiff_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2220,15 +1955,15 @@ Checking test 055 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 213.678819 -[0] The maximum resident set size (KB) = 585152 +[0] The total amount of wall time = 210.212262 +[0] The maximum resident set size (KB) = 588608 -Test 055 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hrrr_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hrrr_control -Checking test 056 hrrr_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hrrr_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2274,15 +2009,15 @@ Checking test 056 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 405.577252 -[0] The maximum resident set size (KB) = 837712 +[0] The total amount of wall time = 410.363345 +[0] The maximum resident set size (KB) = 832848 -Test 056 hrrr_control PASS +Test 051 hrrr_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rrfs_v1beta -Checking test 057 rrfs_v1beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2328,15 +2063,15 @@ Checking test 057 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 406.709517 -[0] The maximum resident set size (KB) = 835752 +[0] The total amount of wall time = 406.751304 +[0] The maximum resident set size (KB) = 834292 -Test 057 rrfs_v1beta PASS +Test 052 rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_v1nssl -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rrfs_v1nssl -Checking test 058 rrfs_v1nssl results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rrfs_v1nssl +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2350,15 +2085,15 @@ Checking test 058 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 505.866035 -[0] The maximum resident set size (KB) = 522760 +[0] The total amount of wall time = 511.860159 +[0] The maximum resident set size (KB) = 522888 -Test 058 rrfs_v1nssl PASS +Test 053 rrfs_v1nssl PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_v1nssl_nohailnoccn -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rrfs_v1nssl_nohailnoccn -Checking test 059 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rrfs_v1nssl_nohailnoccn +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2372,15 +2107,15 @@ Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 503.727091 -[0] The maximum resident set size (KB) = 511888 +[0] The total amount of wall time = 505.470904 +[0] The maximum resident set size (KB) = 514548 -Test 059 rrfs_v1nssl_nohailnoccn PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_conus13km_hrrr_warm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rrfs_conus13km_hrrr_warm -Checking test 060 rrfs_conus13km_hrrr_warm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rrfs_conus13km_hrrr_warm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rrfs_conus13km_hrrr_warm +Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2388,15 +2123,15 @@ Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 188.911996 -[0] The maximum resident set size (KB) = 662360 +[0] The total amount of wall time = 191.068685 +[0] The maximum resident set size (KB) = 664824 -Test 060 rrfs_conus13km_hrrr_warm PASS +Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rrfs_conus13km_radar_tten_warm -Checking test 061 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rrfs_conus13km_radar_tten_warm +Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2404,15 +2139,15 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 187.201688 -[0] The maximum resident set size (KB) = 668412 +[0] The total amount of wall time = 188.738081 +[0] The maximum resident set size (KB) = 664896 -Test 061 rrfs_conus13km_radar_tten_warm PASS +Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_rrtmgp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_rrtmgp -Checking test 062 control_rrtmgp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_rrtmgp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_rrtmgp +Checking test 057 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2422,15 +2157,15 @@ Checking test 062 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 235.633889 -[0] The maximum resident set size (KB) = 598236 +[0] The total amount of wall time = 235.794588 +[0] The maximum resident set size (KB) = 604636 -Test 062 control_rrtmgp PASS +Test 057 control_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_rrtmgp_c192 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_rrtmgp_c192 -Checking test 063 control_rrtmgp_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_rrtmgp_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_rrtmgp_c192 +Checking test 058 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2440,15 +2175,15 @@ Checking test 063 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 637.561388 -[0] The maximum resident set size (KB) = 802772 +[0] The total amount of wall time = 636.926669 +[0] The maximum resident set size (KB) = 803660 -Test 063 control_rrtmgp_c192 PASS +Test 058 control_rrtmgp_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_csawmg -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_csawmg -Checking test 064 control_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_csawmg +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_csawmg +Checking test 059 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2458,15 +2193,15 @@ Checking test 064 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 373.687820 -[0] The maximum resident set size (KB) = 526044 +[0] The total amount of wall time = 378.403547 +[0] The maximum resident set size (KB) = 526228 -Test 064 control_csawmg PASS +Test 059 control_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_csawmgt -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_csawmgt -Checking test 065 control_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_csawmgt +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_csawmgt +Checking test 060 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2476,15 +2211,15 @@ Checking test 065 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 372.226161 -[0] The maximum resident set size (KB) = 523360 +[0] The total amount of wall time = 381.355283 +[0] The maximum resident set size (KB) = 527256 -Test 065 control_csawmgt PASS +Test 060 control_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_flake -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_flake -Checking test 066 control_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_flake +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_flake +Checking test 061 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2494,15 +2229,15 @@ Checking test 066 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 252.625159 -[0] The maximum resident set size (KB) = 535024 +[0] The total amount of wall time = 258.008019 +[0] The maximum resident set size (KB) = 537140 -Test 066 control_flake PASS +Test 061 control_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_ras -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_ras -Checking test 067 control_ras results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_ras +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_ras +Checking test 062 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2512,15 +2247,15 @@ Checking test 067 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 197.596733 -[0] The maximum resident set size (KB) = 498756 +[0] The total amount of wall time = 198.662395 +[0] The maximum resident set size (KB) = 499684 -Test 067 control_ras PASS +Test 062 control_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_thompson -Checking test 068 control_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_thompson +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_thompson +Checking test 063 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2530,15 +2265,15 @@ Checking test 068 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 255.339897 -[0] The maximum resident set size (KB) = 850104 +[0] The total amount of wall time = 252.515102 +[0] The maximum resident set size (KB) = 852196 -Test 068 control_thompson PASS +Test 063 control_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_thompson_no_aero -Checking test 069 control_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_thompson_no_aero +Checking test 064 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2548,55 +2283,55 @@ Checking test 069 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 247.898791 -[0] The maximum resident set size (KB) = 840500 +[0] The total amount of wall time = 240.929042 +[0] The maximum resident set size (KB) = 842368 -Test 069 control_thompson_no_aero PASS +Test 064 control_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_wam_repro -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_wam_repro -Checking test 070 control_wam results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_wam_repro +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_wam_repro +Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 132.629879 -[0] The maximum resident set size (KB) = 227408 +[0] The total amount of wall time = 133.491664 +[0] The maximum resident set size (KB) = 226428 -Test 070 control_wam PASS +Test 065 control_wam PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_debug -Checking test 071 control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_debug +Checking test 066 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 165.824220 -[0] The maximum resident set size (KB) = 625400 +[0] The total amount of wall time = 166.819329 +[0] The maximum resident set size (KB) = 625836 -Test 071 control_debug PASS +Test 066 control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_2threads_debug -Checking test 072 control_2threads_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_2threads_debug +Checking test 067 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 156.008787 -[0] The maximum resident set size (KB) = 678772 +[0] The total amount of wall time = 156.660125 +[0] The maximum resident set size (KB) = 674872 -Test 072 control_2threads_debug PASS +Test 067 control_2threads_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_CubedSphereGrid_debug -Checking test 073 control_CubedSphereGrid_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_CubedSphereGrid_debug +Checking test 068 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2622,442 +2357,427 @@ Checking test 073 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 180.580905 -[0] The maximum resident set size (KB) = 626824 +[0] The total amount of wall time = 181.296452 +[0] The maximum resident set size (KB) = 627368 -Test 073 control_CubedSphereGrid_debug PASS +Test 068 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_wrtGauss_netcdf_parallel_debug -Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_wrtGauss_netcdf_parallel_debug +Checking test 069 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 = 168.700213 -[0] The maximum resident set size (KB) = 628316 +[0] The total amount of wall time = 170.259489 +[0] The maximum resident set size (KB) = 626456 -Test 074 control_wrtGauss_netcdf_parallel_debug PASS +Test 069 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_stochy_debug -Checking test 075 control_stochy_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_stochy_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_stochy_debug +Checking test 070 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 189.758943 -[0] The maximum resident set size (KB) = 629492 +[0] The total amount of wall time = 191.472244 +[0] The maximum resident set size (KB) = 631320 -Test 075 control_stochy_debug PASS +Test 070 control_stochy_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_lndp_debug -Checking test 076 control_lndp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_lndp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_lndp_debug +Checking test 071 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 = 170.596376 -[0] The maximum resident set size (KB) = 636576 +[0] The total amount of wall time = 171.319180 +[0] The maximum resident set size (KB) = 633188 -Test 076 control_lndp_debug PASS +Test 071 control_lndp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_rrtmgp_debug -Checking test 077 control_rrtmgp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_rrtmgp_debug +Checking test 072 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 183.853467 -[0] The maximum resident set size (KB) = 735720 +[0] The total amount of wall time = 184.451435 +[0] The maximum resident set size (KB) = 737212 -Test 077 control_rrtmgp_debug PASS +Test 072 control_rrtmgp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_csawmg_debug -Checking test 078 control_csawmg_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_csawmg_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_csawmg_debug +Checking test 073 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 = 267.289633 -[0] The maximum resident set size (KB) = 669452 +[0] The total amount of wall time = 268.158228 +[0] The maximum resident set size (KB) = 664816 -Test 078 control_csawmg_debug PASS +Test 073 control_csawmg_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_csawmgt_debug -Checking test 079 control_csawmgt_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_csawmgt_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_csawmgt_debug +Checking test 074 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 262.442867 -[0] The maximum resident set size (KB) = 666040 +[0] The total amount of wall time = 264.457546 +[0] The maximum resident set size (KB) = 661992 -Test 079 control_csawmgt_debug PASS +Test 074 control_csawmgt_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_ras_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_ras_debug -Checking test 080 control_ras_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_ras_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_ras_debug +Checking test 075 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 = 172.536625 -[0] The maximum resident set size (KB) = 641940 +[0] The total amount of wall time = 173.485050 +[0] The maximum resident set size (KB) = 640348 -Test 080 control_ras_debug PASS +Test 075 control_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_diag_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_diag_debug -Checking test 081 control_diag_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_diag_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_diag_debug +Checking test 076 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 175.392418 -[0] The maximum resident set size (KB) = 685728 +[0] The total amount of wall time = 176.251665 +[0] The maximum resident set size (KB) = 683772 -Test 081 control_diag_debug PASS +Test 076 control_diag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_debug_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_debug_p8 -Checking test 082 control_debug_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_debug_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_debug_p8 +Checking test 077 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 = 184.361109 -[0] The maximum resident set size (KB) = 1007296 +[0] The total amount of wall time = 204.603688 +[0] The maximum resident set size (KB) = 1124040 -Test 082 control_debug_p8 PASS +Test 077 control_debug_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_thompson_debug -Checking test 083 control_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_thompson_debug +Checking test 078 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 194.988613 -[0] The maximum resident set size (KB) = 988228 +[0] The total amount of wall time = 196.585602 +[0] The maximum resident set size (KB) = 987164 -Test 083 control_thompson_debug PASS +Test 078 control_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_thompson_no_aero_debug -Checking test 084 control_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_thompson_no_aero_debug +Checking test 079 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 189.250631 -[0] The maximum resident set size (KB) = 980772 +[0] The total amount of wall time = 189.417781 +[0] The maximum resident set size (KB) = 982500 -Test 084 control_thompson_no_aero_debug PASS +Test 079 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_debug_extdiag -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_thompson_extdiag_debug -Checking test 085 control_thompson_extdiag_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_thompson_debug_extdiag +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_thompson_extdiag_debug +Checking test 080 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 204.764821 -[0] The maximum resident set size (KB) = 1018688 +[0] The total amount of wall time = 206.685878 +[0] The maximum resident set size (KB) = 1016164 -Test 085 control_thompson_extdiag_debug PASS +Test 080 control_thompson_extdiag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_thompson_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_thompson_progcld_thompson_debug -Checking test 086 control_thompson_progcld_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_thompson_progcld_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_thompson_progcld_thompson_debug +Checking test 081 control_thompson_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 = 195.203798 -[0] The maximum resident set size (KB) = 994020 +[0] The total amount of wall time = 197.100924 +[0] The maximum resident set size (KB) = 990968 -Test 086 control_thompson_progcld_thompson_debug PASS +Test 081 control_thompson_progcld_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/fv3_regional_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/regional_debug -Checking test 087 regional_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/fv3_regional_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/regional_debug +Checking test 082 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 = 281.117872 -[0] The maximum resident set size (KB) = 601600 +[0] The total amount of wall time = 282.069960 +[0] The maximum resident set size (KB) = 603124 -Test 087 regional_debug PASS +Test 082 regional_debug PASS +Test 083 rap_control_debug FAIL -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_control_debug -Checking test 088 rap_control_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_unified_drag_suite_debug +Checking test 084 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 = 302.608421 -[0] The maximum resident set size (KB) = 996752 +[0] The total amount of wall time = 304.589045 +[0] The maximum resident set size (KB) = 996616 -Test 088 rap_control_debug PASS +Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_unified_drag_suite_debug -Checking test 089 rap_unified_drag_suite_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_diag_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_diag_debug +Checking test 085 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 = 303.453228 -[0] The maximum resident set size (KB) = 996860 +[0] The total amount of wall time = 320.107838 +[0] The maximum resident set size (KB) = 1078996 -Test 089 rap_unified_drag_suite_debug PASS +Test 085 rap_diag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_diag_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_diag_debug -Checking test 090 rap_diag_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_cires_ugwp_debug +Checking test 086 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 = 318.235684 -[0] The maximum resident set size (KB) = 1084204 - -Test 090 rap_diag_debug PASS +[0] The total amount of wall time = 310.841930 +[0] The maximum resident set size (KB) = 1001284 +Test 086 rap_cires_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_cires_ugwp_debug -Checking test 091 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............MISSING file - Comparing sfcf001.nc ............MISSING file - Comparing atmf000.nc ............MISSING file - Comparing atmf001.nc ............MISSING file - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_unified_ugwp_debug -Checking test 092 rap_unified_ugwp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_unified_ugwp_debug +Checking test 087 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 = 308.974374 -[0] The maximum resident set size (KB) = 1000620 +[0] The total amount of wall time = 311.386411 +[0] The maximum resident set size (KB) = 1000396 -Test 092 rap_unified_ugwp_debug PASS +Test 087 rap_unified_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_lndp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_lndp_debug -Checking test 093 rap_lndp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_lndp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_lndp_debug +Checking test 088 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 = 305.187556 -[0] The maximum resident set size (KB) = 1004732 +[0] The total amount of wall time = 308.307495 +[0] The maximum resident set size (KB) = 1001692 -Test 093 rap_lndp_debug PASS +Test 088 rap_lndp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_flake_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_flake_debug -Checking test 094 rap_flake_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_flake_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_flake_debug +Checking test 089 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 = 302.794755 -[0] The maximum resident set size (KB) = 996460 +[0] The total amount of wall time = 304.300504 +[0] The maximum resident set size (KB) = 996728 -Test 094 rap_flake_debug PASS +Test 089 rap_flake_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_progcld_thompson_debug -Checking test 095 rap_progcld_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_progcld_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_progcld_thompson_debug +Checking test 090 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 = 303.247964 -[0] The maximum resident set size (KB) = 999472 +[0] The total amount of wall time = 304.572824 +[0] The maximum resident set size (KB) = 1000416 -Test 095 rap_progcld_thompson_debug PASS +Test 090 rap_progcld_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_noah_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_noah_debug -Checking test 096 rap_noah_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_noah_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_noah_debug +Checking test 091 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 = 299.642678 -[0] The maximum resident set size (KB) = 995808 +[0] The total amount of wall time = 301.719335 +[0] The maximum resident set size (KB) = 999812 -Test 096 rap_noah_debug PASS +Test 091 rap_noah_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_rrtmgp_debug -Checking test 097 rap_rrtmgp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_rrtmgp_debug +Checking test 092 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 515.689285 -[0] The maximum resident set size (KB) = 1114312 +[0] The total amount of wall time = 516.757943 +[0] The maximum resident set size (KB) = 1114244 -Test 097 rap_rrtmgp_debug PASS +Test 092 rap_rrtmgp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_sfcdiff_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rap_sfcdiff_debug -Checking test 098 rap_sfcdiff_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_sfcdiff_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_sfcdiff_debug +Checking test 093 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 = 302.633225 -[0] The maximum resident set size (KB) = 997544 - -Test 098 rap_sfcdiff_debug PASS +[0] The total amount of wall time = 303.443765 +[0] The maximum resident set size (KB) = 999556 -Test 099 rap_noah_sfcdiff_cires_ugwp_debug FAIL +Test 093 rap_sfcdiff_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/rrfs_v1beta_debug -Checking test 100 rrfs_v1beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 094 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 = 301.894414 -[0] The maximum resident set size (KB) = 996444 - -Test 100 rrfs_v1beta_debug PASS +[0] The total amount of wall time = 506.990478 +[0] The maximum resident set size (KB) = 999500 +Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_wam_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/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 = 320.285475 -[0] The maximum resident set size (KB) = 254224 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/rrfs_v1beta_debug +Checking test 095 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 101 control_wam_debug PASS +[0] The total amount of wall time = 303.426284 +[0] The maximum resident set size (KB) = 998528 +Test 095 rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_atm -Checking test 102 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 255.145240 -[0] The maximum resident set size (KB) = 707596 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_wam_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_wam_debug +Checking test 096 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -Test 102 hafs_regional_atm PASS +[0] The total amount of wall time = 323.588035 +[0] The maximum resident set size (KB) = 254568 +Test 096 control_wam_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_atm_thompson_gfdlsf -Checking test 103 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc .........OK +Test 097 hafs_regional_atm FAIL -[0] The total amount of wall time = 332.615206 -[0] The maximum resident set size (KB) = 1062516 +Test 098 hafs_regional_atm_thompson_gfdlsf FAIL -Test 103 hafs_regional_atm_thompson_gfdlsf PASS - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm_ocn -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_atm_ocn -Checking test 104 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hafs_regional_atm_ocn +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/hafs_regional_atm_ocn +Checking test 099 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 371.605976 -[0] The maximum resident set size (KB) = 713192 +[0] The total amount of wall time = 369.262937 +[0] The maximum resident set size (KB) = 714024 -Test 104 hafs_regional_atm_ocn PASS +Test 099 hafs_regional_atm_ocn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm_wav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_atm_wav -Checking test 105 hafs_regional_atm_wav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hafs_regional_atm_wav +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/hafs_regional_atm_wav +Checking test 100 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -[0] The total amount of wall time = 971.828380 -[0] The maximum resident set size (KB) = 710076 +[0] The total amount of wall time = 984.984724 +[0] The maximum resident set size (KB) = 712672 -Test 105 hafs_regional_atm_wav PASS +Test 100 hafs_regional_atm_wav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_atm_ocn_wav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_atm_ocn_wav -Checking test 106 hafs_regional_atm_ocn_wav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hafs_regional_atm_ocn_wav +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/hafs_regional_atm_ocn_wav +Checking test 101 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3065,62 +2785,50 @@ Checking test 106 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -[0] The total amount of wall time = 1102.555362 -[0] The maximum resident set size (KB) = 714628 - -Test 106 hafs_regional_atm_ocn_wav PASS - +[0] The total amount of wall time = 1109.823403 +[0] The maximum resident set size (KB) = 717536 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_1nest_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_1nest_atm -Checking test 107 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +Test 101 hafs_regional_atm_ocn_wav PASS -[0] The total amount of wall time = 400.249143 -[0] The maximum resident set size (KB) = 319080 +Test 102 hafs_regional_1nest_atm FAIL -Test 107 hafs_regional_1nest_atm PASS - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_telescopic_2nests_atm -Checking test 108 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/hafs_regional_telescopic_2nests_atm +Checking test 103 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 405.439915 -[0] The maximum resident set size (KB) = 328876 +[0] The total amount of wall time = 412.035134 +[0] The maximum resident set size (KB) = 328352 -Test 108 hafs_regional_telescopic_2nests_atm PASS +Test 103 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_global_1nest_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_global_1nest_atm -Checking test 109 hafs_global_1nest_atm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hafs_global_1nest_atm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/hafs_global_1nest_atm +Checking test 104 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 184.174640 -[0] The maximum resident set size (KB) = 205412 +[0] The total amount of wall time = 179.526937 +[0] The maximum resident set size (KB) = 205392 -Test 109 hafs_global_1nest_atm PASS +Test 104 hafs_global_1nest_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_global_multiple_4nests_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_global_multiple_4nests_atm -Checking test 110 hafs_global_multiple_4nests_atm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hafs_global_multiple_4nests_atm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/hafs_global_multiple_4nests_atm +Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK @@ -3129,149 +2837,149 @@ Checking test 110 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK -[0] The total amount of wall time = 544.545532 -[0] The maximum resident set size (KB) = 277836 +[0] The total amount of wall time = 558.377245 +[0] The maximum resident set size (KB) = 262500 -Test 110 hafs_global_multiple_4nests_atm PASS +Test 105 hafs_global_multiple_4nests_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_docn -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_docn -Checking test 111 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hafs_regional_docn +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/hafs_regional_docn +Checking test 106 hafs_regional_docn results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 367.445650 -[0] The maximum resident set size (KB) = 717148 +[0] The total amount of wall time = 377.946869 +[0] The maximum resident set size (KB) = 716036 -Test 111 hafs_regional_docn PASS +Test 106 hafs_regional_docn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_docn_oisst -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_docn_oisst -Checking test 112 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hafs_regional_docn_oisst +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/hafs_regional_docn_oisst +Checking test 107 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 365.016154 -[0] The maximum resident set size (KB) = 713900 +[0] The total amount of wall time = 376.975311 +[0] The maximum resident set size (KB) = 713708 -Test 112 hafs_regional_docn_oisst PASS +Test 107 hafs_regional_docn_oisst PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/hafs_regional_datm_cdeps -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/hafs_regional_datm_cdeps -Checking test 113 hafs_regional_datm_cdeps results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hafs_regional_datm_cdeps +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/hafs_regional_datm_cdeps +Checking test 108 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 = 1088.721952 -[0] The maximum resident set size (KB) = 889956 +[0] The total amount of wall time = 1090.602753 +[0] The maximum resident set size (KB) = 888088 -Test 113 hafs_regional_datm_cdeps PASS +Test 108 hafs_regional_datm_cdeps PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_control_cfsr -Checking test 114 datm_cdeps_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_control_cfsr +Checking test 109 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 173.862180 -[0] The maximum resident set size (KB) = 724924 +[0] The total amount of wall time = 175.445308 +[0] The maximum resident set size (KB) = 724316 -Test 114 datm_cdeps_control_cfsr PASS +Test 109 datm_cdeps_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_restart_cfsr -Checking test 115 datm_cdeps_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_restart_cfsr +Checking test 110 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 118.001323 -[0] The maximum resident set size (KB) = 721488 +[0] The total amount of wall time = 120.522870 +[0] The maximum resident set size (KB) = 741960 -Test 115 datm_cdeps_restart_cfsr PASS +Test 110 datm_cdeps_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_control_gefs -Checking test 116 datm_cdeps_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_control_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_control_gefs +Checking test 111 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 169.989185 -[0] The maximum resident set size (KB) = 624936 +[0] The total amount of wall time = 169.809441 +[0] The maximum resident set size (KB) = 625836 -Test 116 datm_cdeps_control_gefs PASS +Test 111 datm_cdeps_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_iau_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_iau_gefs -Checking test 117 datm_cdeps_iau_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_iau_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_iau_gefs +Checking test 112 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 168.525462 -[0] The maximum resident set size (KB) = 624812 +[0] The total amount of wall time = 171.720339 +[0] The maximum resident set size (KB) = 627220 -Test 117 datm_cdeps_iau_gefs PASS +Test 112 datm_cdeps_iau_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_stochy_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_stochy_gefs -Checking test 118 datm_cdeps_stochy_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_stochy_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_stochy_gefs +Checking test 113 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 169.898051 -[0] The maximum resident set size (KB) = 625584 +[0] The total amount of wall time = 173.221450 +[0] The maximum resident set size (KB) = 626568 -Test 118 datm_cdeps_stochy_gefs PASS +Test 113 datm_cdeps_stochy_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_bulk_cfsr -Checking test 119 datm_cdeps_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_bulk_cfsr +Checking test 114 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 174.306782 -[0] The maximum resident set size (KB) = 724476 +[0] The total amount of wall time = 175.253691 +[0] The maximum resident set size (KB) = 724780 -Test 119 datm_cdeps_bulk_cfsr PASS +Test 114 datm_cdeps_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_bulk_gefs -Checking test 120 datm_cdeps_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_bulk_gefs +Checking test 115 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 168.583450 -[0] The maximum resident set size (KB) = 627808 +[0] The total amount of wall time = 169.464768 +[0] The maximum resident set size (KB) = 625164 -Test 120 datm_cdeps_bulk_gefs PASS +Test 115 datm_cdeps_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_mx025_cfsr -Checking test 121 datm_cdeps_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_mx025_cfsr +Checking test 116 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3279,15 +2987,15 @@ Checking test 121 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 = 332.582585 -[0] The maximum resident set size (KB) = 558592 +[0] The total amount of wall time = 342.272723 +[0] The maximum resident set size (KB) = 547940 -Test 121 datm_cdeps_mx025_cfsr PASS +Test 116 datm_cdeps_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_mx025_gefs -Checking test 122 datm_cdeps_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_mx025_gefs +Checking test 117 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3295,65 +3003,65 @@ Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 336.020775 -[0] The maximum resident set size (KB) = 521972 +[0] The total amount of wall time = 351.264261 +[0] The maximum resident set size (KB) = 521760 -Test 122 datm_cdeps_mx025_gefs PASS +Test 117 datm_cdeps_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_multiple_files_cfsr -Checking test 123 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_multiple_files_cfsr +Checking test 118 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 = 172.830817 -[0] The maximum resident set size (KB) = 751288 +[0] The total amount of wall time = 174.584106 +[0] The maximum resident set size (KB) = 724384 -Test 123 datm_cdeps_multiple_files_cfsr PASS +Test 118 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_3072x1536_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_3072x1536_cfsr -Checking test 124 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_3072x1536_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_3072x1536_cfsr +Checking test 119 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 248.828535 -[0] The maximum resident set size (KB) = 1897256 +[0] The total amount of wall time = 248.899171 +[0] The maximum resident set size (KB) = 1835604 -Test 124 datm_cdeps_3072x1536_cfsr PASS +Test 119 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_gfs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_gfs -Checking test 125 datm_cdeps_gfs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_gfs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_gfs +Checking test 120 datm_cdeps_gfs results .... Comparing RESTART/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 = 250.450560 -[0] The maximum resident set size (KB) = 1900052 +[0] The total amount of wall time = 249.737542 +[0] The maximum resident set size (KB) = 1837372 -Test 125 datm_cdeps_gfs PASS +Test 120 datm_cdeps_gfs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/datm_cdeps_debug_cfsr -Checking test 126 datm_cdeps_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/datm_cdeps_debug_cfsr +Checking test 121 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -[0] The total amount of wall time = 500.316973 -[0] The maximum resident set size (KB) = 732880 +[0] The total amount of wall time = 501.269928 +[0] The maximum resident set size (KB) = 732740 -Test 126 datm_cdeps_debug_cfsr PASS +Test 121 datm_cdeps_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_atmwav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_atmwav -Checking test 127 control_atmwav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_atmwav +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_atmwav +Checking test 122 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3396,15 +3104,15 @@ Checking test 127 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -[0] The total amount of wall time = 93.357409 -[0] The maximum resident set size (KB) = 477800 +[0] The total amount of wall time = 95.688700 +[0] The maximum resident set size (KB) = 474268 -Test 127 control_atmwav PASS +Test 122 control_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/control_c384gdas_wav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49882/control_c384gdas_wav -Checking test 128 control_c384gdas_wav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/control_c384gdas_wav +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_30068/control_c384gdas_wav +Checking test 123 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3449,55 +3157,96 @@ Checking test 128 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK -[0] The total amount of wall time = 617.126284 -[0] The maximum resident set size (KB) = 989420 +[0] The total amount of wall time = 630.106098 +[0] The maximum resident set size (KB) = 989732 -Test 128 control_c384gdas_wav PASS +Test 123 control_c384gdas_wav PASS FAILED TESTS: -Test rap_cires_ugwp_debug 091 failed in run_test failed -Test rap_noah_sfcdiff_cires_ugwp_debug 099 failed in run_test failed +Test rap_control_debug 083 failed in run_test failed +Test hafs_regional_atm 097 failed in run_test failed +Test hafs_regional_atm_thompson_gfdlsf 098 failed in run_test failed +Test hafs_regional_1nest_atm 102 failed in run_test failed REGRESSION TEST FAILED -Tue Apr 5 22:46:09 UTC 2022 -Elapsed time: 01h:28m:36s. Have a nice day! +Thu Apr 7 20:08:39 UTC 2022 +Elapsed time: 01h:58m:55s. Have a nice day! -Tue Apr 5 22:48:38 UTC 2022 +Thu Apr 7 20:11:21 UTC 2022 Start Regression test -Compile 001 elapsed time 345 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 002 elapsed time 358 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 386 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 002 elapsed time 1436 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_31657/rap_cires_ugwp_debug -Checking test 001 rap_cires_ugwp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/rap_control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_26581/rap_control_debug +Checking test 001 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 = 309.878117 -[0] The maximum resident set size (KB) = 999096 +[0] The total amount of wall time = 303.400100 +[0] The maximum resident set size (KB) = 997704 -Test 001 rap_cires_ugwp_debug PASS +Test 001 rap_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220405/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_31657/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 002 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hafs_regional_atm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_26581/hafs_regional_atm +Checking test 002 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + +[0] The total amount of wall time = 276.409507 +[0] The maximum resident set size (KB) = 709116 + +Test 002 hafs_regional_atm PASS + +Test 003 hafs_regional_atm_thompson_gfdlsf FAIL + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hafs_regional_1nest_atm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_26581/hafs_regional_1nest_atm +Checking test 004 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + +[0] The total amount of wall time = 397.433408 +[0] The maximum resident set size (KB) = 317704 + +Test 004 hafs_regional_1nest_atm PASS + +FAILED TESTS: +Test hafs_regional_atm_thompson_gfdlsf 003 failed in run_test failed + +REGRESSION TEST FAILED +Thu Apr 7 21:29:20 UTC 2022 +Elapsed time: 01h:18m:01s. Have a nice day! + + + +Fri Apr 8 12:31:00 UTC 2022 +Start Regression test + +Compile 001 elapsed time 1421 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220406/hafs_regional_atm_thompson_gfdlsf +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_31516/hafs_regional_atm_thompson_gfdlsf +Checking test 001 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK -[0] The total amount of wall time = 506.065773 -[0] The maximum resident set size (KB) = 997268 +[0] The total amount of wall time = 288.023407 +[0] The maximum resident set size (KB) = 1065056 -Test 002 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 001 hafs_regional_atm_thompson_gfdlsf PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 5 23:05:19 UTC 2022 -Elapsed time: 00h:16m:44s. Have a nice day! +Fri Apr 8 13:03:05 UTC 2022 +Elapsed time: 00h:32m:06s. Have a nice day! From a00d20c87cae914528f25b7d44e4bda1040e845f Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Fri, 8 Apr 2022 15:03:07 +0000 Subject: [PATCH 56/57] Updated ccpp-physics submodules. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 6b1adcb72a..746c5d9e7a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 6b1adcb72ab6478d873e52c2884021e3b7295331 +Subproject commit 746c5d9e7a30a73732d88415099e872329e5edfb From 4c84f4b734b77ab608b82be7e4d20134633ba643 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Fri, 8 Apr 2022 15:53:51 +0000 Subject: [PATCH 57/57] Updated FV3 submodules. --- .gitmodules | 4 ++-- FV3 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 596fa580ed..5ece87098e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,7 @@ [submodule "FV3"] path = FV3 - url = https://github.com/dustinswales/fv3atm - branch = enhanced_GP2cld_coupling_tight + url = https://github.com/NOAA-EMC/fv3atm + branch = develop [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/FV3 b/FV3 index 746c5d9e7a..cec4d38e3b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 746c5d9e7a30a73732d88415099e872329e5edfb +Subproject commit cec4d38e3b82f9a2083b82e4a059a1200f48408f