Note
Go to the end to download the full example code.
Dusty diffusion SPH test#
Test that the diffusion of epsilon is correct when the momentum & energy equation are disabled.
Here are the initial condition for the dustydiffuse test
with \(\rho_0 = 1\), \(\epsilon_0 = 0.1\), \(r_c = 0.25\).
Then we use the dust TVA solver but force \(d \mathbf{v} / dt = 0\) and \(d u / dt = 0\). In that context the epsilon equation becomes:
With the initial condition above, the analytical solution is:
where
43 import os
44
45 import matplotlib as mpl
46 import matplotlib.pyplot as plt
47 import numpy as np
48
49 import shamrock
50
51 shamrock.enable_experimental_features()
52
53 # If we use the shamrock executable to run this script instead of the python interpreter,
54 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
55 if not shamrock.sys.is_initialized():
56 shamrock.change_loglevel(1)
57 shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
- Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )
Sim parameters
63 rho = 1
64 epsilon_0 = 0.1
65 cs_g = 1
66 ts = 0.1
67 rc = 0.25
68
69
70 bmin = (-0.5, -0.5, -0.5)
71 bmax = (0.5, 0.5, 0.5)
72
73 N_target = 3e4
74
75
76 def func_rho_t(r):
77 return rho
78
79
80 def func_eps(pos):
81 r = np.sqrt(pos[0] ** 2 + pos[1] ** 2 + pos[2] ** 2)
82 return epsilon_0 * max(0, 1 - (r / rc) ** 2)
83
84
85 def func_s(r):
86 rho_t = func_rho_t(r)
87 eps = func_eps(r)
88 return np.sqrt(rho_t * eps)
Use shamrock documentation style for matplotlib
93 shamrock.matplotlib.set_shamrock_mpl_style()
Setup
98 xm, ym, zm = bmin
99 xM, yM, zM = bmax
100 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
101
102 part_vol = vol_b / N_target
103
104 # lattice volume
105 HCP_PACKING_DENSITY = 0.74
106 part_vol_lattice = HCP_PACKING_DENSITY * part_vol
107
108 dr = (part_vol_lattice / ((4.0 / 3.0) * np.pi)) ** (1.0 / 3.0)
109
110 bmin, bmax = shamrock.math.get_ideal_hcp_box(dr, bmin, bmax)
111 xm, ym, zm = bmin
112 xM, yM, zM = bmax
113
114
115 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
116 totmass = rho * vol_b
117
118
119 pmass = -1
120
121 ctx = shamrock.Context()
122 ctx.pdata_layout_new()
123
124 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M6")
125
126 cfg = model.gen_default_config()
127 # cfg.set_artif_viscosity_Constant(alpha_u = 1, alpha_AV = 1, beta_AV = 2)
128 # cfg.set_artif_viscosity_VaryingMM97(alpha_min = 0.1,alpha_max = 1,sigma_decay = 0.1, alpha_u = 1, beta_AV = 2)
129 cfg.set_artif_viscosity_VaryingCD10(
130 alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
131 )
132 cfg.set_dust_mode_monofluid_tva(nvar=1, pure_diffusion_mode=True)
133 cfg.set_dust_drag_constant([ts])
134 cfg.set_boundary_periodic()
135 cfg.set_eos_isothermal(cs_g)
136 cfg.print_status()
137 model.set_solver_config(cfg)
138
139 scheduler_split_val = int(2e7)
140 scheduler_merge_val = 1
141
142 model.init_scheduler(scheduler_split_val, scheduler_merge_val)
143
144
145 model.resize_simulation_box(bmin, bmax)
146
147 setup = model.get_setup()
148 gen = setup.make_generator_lattice_hcp(dr, bmin, bmax)
149 setup.apply_setup(gen, insert_step=scheduler_split_val)
150
151
152 model.set_field_value_lambda_f64("s_j", func_s, 0)
153
154 pmass = model.total_mass_to_part_mass(totmass)
155 model.set_particle_mass(pmass)
156
157 model.set_cfl_cour(0.3)
158 model.set_cfl_force(0.3)
159
160 model.timestep()
161
162 t_snapshot = [0.0, 0.1, 0.3, 1, 3, 10]
163 snapshots = []
----- SPH Solver configuration -----
[
{
"artif_viscosity": {
"alpha_max": 1.0,
"alpha_min": 0.0,
"alpha_u": 1.0,
"beta_AV": 2.0,
"sigma_decay": 0.1,
"type": "varying_cd10"
},
"boundary_config": {
"bc_type": "periodic"
},
"cfl_config": {
"cfl_cour": 0.0,
"cfl_force": 0.0,
"cfl_multiplier_stiffness": 2.0,
"eta_sink": 0.05
},
"combined_dtdiv_divcurlv_compute": false,
"debug_dump_filename": "",
"do_debug_dump": false,
"dust_config": {
"ballabio_ts_limiter": false,
"drag_mode": {
"stopping_times": [
0.1
],
"type": "constant_stopping_times"
},
"mode": {
"C_1_fluid": 0.1,
"C_drift": 1.0,
"cfl_density_threshold": 2.220446049250313e-16,
"dust_corrected_av": false,
"ensure_s_j_positivity": true,
"ndust": 1,
"pure_diffusion_mode": true,
"smooth_s_positivity_limiter": false,
"type": "monofluid_tva"
}
},
"enable_particle_reordering": false,
"eos_config": {
"Tvec": "f64_3",
"cs": 1.0,
"eos_type": "isothermal"
},
"epsilon_h": 1e-06,
"ext_force_config": {
"force_list": []
},
"gpart_mass": 0.0,
"h_iter_per_subcycles": 50,
"h_max_subcycles_count": 100,
"htol_up_coarse_cycle": 1.1,
"htol_up_fine_cycle": 1.1,
"kernel_id": "M6<f64>",
"mhd_config": {
"mhd_type": "none"
},
"particle_killing": [],
"particle_reordering_step_freq": 1000,
"save_dt_to_fields": false,
"scheduler_config": {
"merge_load_value": 0,
"split_load_value": 0
},
"self_grav_config": {
"softening_length": 1e-09,
"softening_mode": "plummer",
"type": "none"
},
"show_cfl_detail": false,
"show_ghost_zone_graph": false,
"show_neigh_stats": false,
"smoothing_length_config": {
"type": "density_based"
},
"tree_reduction_level": 3,
"type_id": "sycl::vec<f64,3>",
"unit_sys": null,
"use_two_stage_search": true
}
]
------------------------------------
---------------------------- WARNING ----------------------------
Warning: Experimental features are enabled
-----------------------------------------------------------------
Warning: Dust config != None is work in progress, use it at your own risk [SPH::config][rank=0]
SPH setup: generating particles ...
SPH setup: Nstep = 30464 ( 3.0e+04 ) Ntotal = 30464 ( 3.0e+04 rank min = 6.7e+06 max = 3.0e+04) rate = 3.046400e+04 N.s^-1
SPH setup: the generation step took : 0.011338583000000001 s
SPH setup: final particle count = 30464 beginning injection ...
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.80 us (86.2%)
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (0.2%)
patch tree reduce : 1.28 us (0.2%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 807.40 us (98.5%)
LB move op cnt : 0
LB apply : 4.02 us (0.5%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
SPH setup: injected 30464 / 30464 => 100.0% | ranks with patchs = 1 / 1 <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.012271629000000001 s
Info: injection perf report: [SPH setup][rank=0]
+======+====================+=======+=============+=============+=============+
| rank | rank get (sum/max) | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+====================+=======+=============+=============+=============+
| 0 | 0.00s / 0.00s | 0.00s | 7.1% 0.0% | 2.15 GB | 2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.029216296000000003 s
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 379.41 us (94.0%)
LB move op cnt : 0
LB apply : 5.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.4324120273109244
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01986399682184233 unconverged cnt = 30464
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.47108061974789917
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.021850396504026565 unconverged cnt = 30464
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.47108061974789917
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.024035436154429223 unconverged cnt = 30464
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.5394235819327732
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.026438979769872147 unconverged cnt = 30464
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.5610884978991596
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.029082877746859363 unconverged cnt = 30464
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.736705619747899
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.0319911655215453 unconverged cnt = 30464
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 3.217621890927013e-05 cfl multiplier : 0.01 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.5135e+04 | 30464 | 1 | 1.212e+00 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
Field recovery for plots
168 def get_field_results(model):
169 def custom_getter_r(size: int, dic_out: dict) -> np.array:
170 return np.sqrt(
171 dic_out["xyz"][:, 0] ** 2 + dic_out["xyz"][:, 1] ** 2 + dic_out["xyz"][:, 2] ** 2
172 )
173
174 r_field = model.compute_field("custom", "f64", custom_getter_r)
175 rho_field = model.compute_field("rho", "f64")
176 s_j_field = model.compute_field("s_j", "f64")
177 dsdt_field = model.compute_field("ds_j_dt", "f64")
178
179 def internal_eps(size: int, s: np.array, rho: np.array) -> np.array:
180 return (s**2) / rho
181
182 eps_field = shamrock.map_fields_f64(internal_eps, s=s_j_field, rho=rho_field)
183
184 def internal_rho_g(size: int, rho: np.array, eps: np.array) -> np.array:
185 return rho * (1 - eps)
186
187 def internal_rho_d(size: int, rho: np.array, eps: np.array) -> np.array:
188 return rho * eps
189
190 rho_g_field = shamrock.map_fields_f64(internal_rho_g, rho=rho_field, eps=eps_field)
191 rho_d_field = shamrock.map_fields_f64(internal_rho_d, rho=rho_field, eps=eps_field)
192
193 r_data = np.asarray(r_field.collect_data())
194 rho_data = np.asarray(rho_field.collect_data())
195 rho_g_data = np.asarray(rho_g_field.collect_data())
196 rho_d_data = np.asarray(rho_d_field.collect_data())
197 dsdt_data = np.asarray(dsdt_field.collect_data())
198 return r_data, rho_data, rho_g_data, rho_d_data, dsdt_data
Analytical solutions
203 r_ana = np.linspace(0, 0.5, 100)
204
205
206 def analytic_eps(r, t, eta=0.1):
207
208 B = (rc**2) / epsilon_0 # that frac is in the wrong way in PL15
209 A = epsilon_0 * (B ** (3.0 / 5.0))
210
211 return A * np.abs(10 * eta * t + B) ** (-3.0 / 5.0) - (r**2 / (10 * eta * t + B))
212
213
214 def analytic_eps_curve(t):
215 return np.array([analytic_eps(r, t) for r in r_ana])
216
217
218 def analytic_dsdt(t):
219 dt = 1e-4
220 deps_dt = (analytic_eps_curve(t + dt) - analytic_eps_curve(t - dt)) / (2 * dt)
221 s = np.sqrt(rho * analytic_eps_curve(t))
222 return deps_dt / (2 * s + 1e-9)
Perform the simulation
227 os.makedirs("_to_trash", exist_ok=True)
228 for t in [0.1 * i for i in range(20)]:
229 model.evolve_until(t)
230 r_data, rho_data, rho_g_data, rho_d_data, dsdt_data = get_field_results(model)
231 eps = rho_d_data / rho_data
232
233 if any(np.isclose(t, ts, atol=1e-6) for ts in t_snapshot):
234 snapshots.append((t, r_data, eps))
235
236 fig, axs = plt.subplots(1, 2, figsize=(10, 5))
237 axs[0].plot(r_data, eps, ".", label="eps")
238 axs[0].plot(r_ana, analytic_eps_curve(t), "--", color="black", label="analytic")
239 axs[0].set_xlabel(r"$r$")
240 axs[0].set_ylabel(r"$\epsilon$")
241 axs[0].set_xlim(0, 0.5)
242 axs[0].set_ylim(0, 0.11)
243 axs[0].text(
244 0.02,
245 0.98,
246 f"t = {t:.2f}",
247 transform=axs[0].transAxes,
248 verticalalignment="top",
249 horizontalalignment="left",
250 bbox=dict(boxstyle="round", facecolor="wheat", alpha=0.5),
251 )
252 axs[1].plot(r_data, dsdt_data, ".", label="ds/dt")
253 axs[1].plot(r_ana, analytic_dsdt(t), "--", color="black", label="analytic")
254 axs[1].set_xlabel(r"$r$")
255 axs[1].set_ylabel(r"$\frac{d s}{d t}$")
256 axs[1].set_xlim(0, 0.5)
257 axs[1].set_ylim(-0.16, 0.4)
258 plt.tight_layout()
259 plt.savefig(f"_to_trash/dump_dustydiffuse_tva_{t:.2f}.png")
260 plt.close()
Info: evolve_until (target_time = 0.00s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
Info: iteration since start : 1 [SPH][rank=0]
Info: time since start : 12.769850687 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.016986816000000002 s
/work/doc/sphinx/examples/sph/run_dustydiffuse_tva.py:221: RuntimeWarning: invalid value encountered in sqrt
s = np.sqrt(rho * analytic_eps_curve(t))
Info: evolve_until (target_time = 0.10s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0, dt = 3.217621890927013e-05 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.20 us (1.9%)
patch tree reduce : 10.10 us (2.1%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 439.68 us (91.1%)
LB move op cnt : 0
LB apply : 4.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (64.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0010939914429151853 cfl multiplier : 0.34 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3416e+04 | 30464 | 1 | 5.703e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.2031072198242525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.217621890927013e-05, dt = 0.0010939914429151853 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 377.99 us (95.3%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.001801868258919129 cfl multiplier : 0.56 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4942e+04 | 30464 | 1 | 4.691e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.395645927547932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0011261676618244554, dt = 0.001801868258919129 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 321.27 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0022737861362550913 cfl multiplier : 0.7066666666666667 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6145e+04 | 30464 | 1 | 4.606e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.084380405077185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0029280359207435845, dt = 0.0022737861362550913 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.4%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 370.32 us (94.9%)
LB move op cnt : 0
LB apply : 4.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (63.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0025883980544790662 cfl multiplier : 0.8044444444444444 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6118e+04 | 30464 | 1 | 4.608e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.76583903397791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.005201822056998676, dt = 0.0025883980544790662 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.4%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 396.50 us (95.2%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0027981393332950494 cfl multiplier : 0.8696296296296296 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6520e+04 | 30464 | 1 | 4.580e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.347003897962317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0077902201114777424, dt = 0.0027981393332950494 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.3%)
patch tree reduce : 1.53 us (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 444.29 us (95.7%)
LB move op cnt : 0
LB apply : 3.90 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0029379668525057047 cfl multiplier : 0.9130864197530864 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6299e+04 | 30464 | 1 | 4.595e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.922645402830994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.010588359444772792, dt = 0.0029379668525057047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.4%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.49 us (0.4%)
LB compute : 380.38 us (95.0%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003031185198646142 cfl multiplier : 0.9420576131687243 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9538e+04 | 30464 | 1 | 5.117e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.670796346939497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.013526326297278497, dt = 0.003031185198646142 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 354.78 us (94.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (60.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003093330762739767 cfl multiplier : 0.9613717421124829 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5453e+04 | 30464 | 1 | 4.654e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.44530950507199 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01655751149592464, dt = 0.003093330762739767 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.3%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 355.14 us (95.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003134761138802183 cfl multiplier : 0.9742478280749886 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8807e+04 | 30464 | 1 | 5.180e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.49671821391936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.019650842258664404, dt = 0.003134761138802183 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.8%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 327.08 us (94.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003162381389510461 cfl multiplier : 0.9828318853833258 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3961e+04 | 30464 | 1 | 4.763e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.693802498548077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02278560339746659, dt = 0.003162381389510461 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.2%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 383.41 us (95.4%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003180794889982646 cfl multiplier : 0.9885545902555505 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2164e+04 | 30464 | 1 | 4.901e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.23115115562642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02594798478697705, dt = 0.003180794889982646 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 322.89 us (94.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0031930705569641026 cfl multiplier : 0.9923697268370336 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4961e+04 | 30464 | 1 | 4.690e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.417577609098423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.029128779676959697, dt = 0.0031930705569641026 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.3%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 390.05 us (95.4%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032012543349517406 cfl multiplier : 0.9949131512246892 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6179e+04 | 30464 | 1 | 4.603e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.97158098642293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.032321850233923796, dt = 0.0032012543349517406 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 384.32 us (95.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003206710186943499 cfl multiplier : 0.9966087674831261 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6107e+04 | 30464 | 1 | 4.608e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.008322926181453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03552310456887554, dt = 0.003206710186943499 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (1.7%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 382.38 us (94.5%)
LB move op cnt : 0
LB apply : 4.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003210347421604671 cfl multiplier : 0.997739178322084 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5931e+04 | 30464 | 1 | 4.621e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.984053183550305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.038729814755819034, dt = 0.003210347421604671 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 348.92 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032127722447121195 cfl multiplier : 0.998492785548056 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6579e+04 | 30464 | 1 | 4.576e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.258221670630387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.041940162177423704, dt = 0.0032127722447121195 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 346.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032143887934504185 cfl multiplier : 0.9989951903653708 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5913e+04 | 30464 | 1 | 4.622e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.024558242739065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.045152934422135825, dt = 0.0032143887934504185 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 315.92 us (94.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032154664926092847 cfl multiplier : 0.9993301269102473 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2416e+04 | 30464 | 1 | 4.881e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.708953243806075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04836732321558625, dt = 0.0032154664926092847 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 316.44 us (93.9%)
LB move op cnt : 0
LB apply : 4.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032161849587151953 cfl multiplier : 0.9995534179401648 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6571e+04 | 30464 | 1 | 4.576e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.29568587695753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.051582789708195534, dt = 0.0032161849587151953 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 345.85 us (94.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032166639361191356 cfl multiplier : 0.9997022786267765 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6357e+04 | 30464 | 1 | 4.591e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.22001815341033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05479897466691073, dt = 0.0032166639361191356 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.5%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 380.50 us (95.0%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003216983254388429 cfl multiplier : 0.9998015190845176 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6041e+04 | 30464 | 1 | 4.613e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.10364485403164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.058015638603029863, dt = 0.003216983254388429 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.7%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 329.94 us (88.6%)
LB move op cnt : 0
LB apply : 25.92 us (7.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032171961332346246 cfl multiplier : 0.9998676793896785 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6051e+04 | 30464 | 1 | 4.612e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.109795197320448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06123262185741829, dt = 0.0032171961332346246 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 358.03 us (94.6%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032173380524654215 cfl multiplier : 0.9999117862597856 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5319e+04 | 30464 | 1 | 4.664e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.833281030452913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06444981799065291, dt = 0.0032173380524654215 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 319.88 us (94.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217432665285953 cfl multiplier : 0.9999411908398571 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6076e+04 | 30464 | 1 | 4.610e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.122211109296227 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06766715604311833, dt = 0.003217432665285953 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.4%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 379.53 us (95.1%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032174957404996407 cfl multiplier : 0.999960793893238 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6147e+04 | 30464 | 1 | 4.606e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.149730926509296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07088458870840429, dt = 0.0032174957404996407 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.3%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 399.16 us (95.3%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217537790642099 cfl multiplier : 0.999973862595492 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3349e+04 | 30464 | 1 | 4.809e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.086522600607065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07410208444890393, dt = 0.003217537790642099 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (1.7%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 379.59 us (94.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217565824070405 cfl multiplier : 0.9999825750636614 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5010e+04 | 30464 | 1 | 4.686e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.7184812337524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07731962223954603, dt = 0.003217565824070405 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (1.5%)
patch tree reduce : 1.95 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 449.93 us (95.3%)
LB move op cnt : 0
LB apply : 4.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (75.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032175845130226087 cfl multiplier : 0.9999883833757742 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5296e+04 | 30464 | 1 | 4.665e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.827436059436053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08053718806361643, dt = 0.0032175845130226087 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (1.9%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 351.78 us (94.2%)
LB move op cnt : 0
LB apply : 4.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217596972324078 cfl multiplier : 0.9999922555838495 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5374e+04 | 30464 | 1 | 4.660e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.857236922938142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08375477257663903, dt = 0.003217596972324078 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.6%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 388.16 us (94.8%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176052785250573 cfl multiplier : 0.9999948370558996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5363e+04 | 30464 | 1 | 4.661e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.853039298248135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0869723695489631, dt = 0.0032176052785250573 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.4%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 421.37 us (95.4%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (72.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217610815992377 cfl multiplier : 0.9999965580372665 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5565e+04 | 30464 | 1 | 4.646e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.9300077962324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09018997482748817, dt = 0.003217610815992377 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 372.46 us (94.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176145076372566 cfl multiplier : 0.9999977053581777 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5799e+04 | 30464 | 1 | 4.630e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.018761940450716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09340758564348055, dt = 0.0032176145076372566 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 351.50 us (94.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217616968733843 cfl multiplier : 0.9999984702387851 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5908e+04 | 30464 | 1 | 4.622e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.06055203463979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09662520015111781, dt = 0.003217616968733843 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.7%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 359.03 us (94.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (60.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176186094649006 cfl multiplier : 0.99999898015919 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4577e+04 | 30464 | 1 | 4.717e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.554399348637066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09984281711985166, dt = 0.0001571828801483488 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 319.55 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176197032856057 cfl multiplier : 0.9999993201061267 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6389e+04 | 30464 | 1 | 4.589e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2331517745705927 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 36 [SPH][rank=0]
Info: time since start : 29.848866642 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.007015221 s
Info: evolve_until (target_time = 0.20s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.1, dt = 0.0032176197032856057 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.90 us (2.2%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 374.79 us (93.9%)
LB move op cnt : 0
LB apply : 4.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217620432499409 cfl multiplier : 0.9999995467374179 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5899e+04 | 30464 | 1 | 4.623e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.057081765329016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1032176197032856, dt = 0.003217620432499409 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 358.58 us (94.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217620918641945 cfl multiplier : 0.9999996978249452 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5873e+04 | 30464 | 1 | 4.625e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.047072228474686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10643524013578502, dt = 0.003217620918641945 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 364.50 us (94.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176212427369685 cfl multiplier : 0.9999997985499635 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8671e+04 | 30464 | 1 | 5.192e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.30853805666895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10965286105442697, dt = 0.0032176212427369685 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.4%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 364.75 us (95.0%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176214588003176 cfl multiplier : 0.9999998656999756 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0882e+04 | 30464 | 1 | 5.004e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.14934306137426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11287048229716394, dt = 0.0032176214588003176 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 363.00 us (94.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.00321762160284255 cfl multiplier : 0.9999999104666504 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6081e+04 | 30464 | 1 | 4.610e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.1260692504708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11608810375596426, dt = 0.00321762160284255 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 331.46 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (72.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621698870706 cfl multiplier : 0.9999999403111003 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6267e+04 | 30464 | 1 | 4.597e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.197127760056738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1193057253588068, dt = 0.003217621698870706 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.5%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 406.18 us (95.0%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621762889476 cfl multiplier : 0.9999999602074002 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6173e+04 | 30464 | 1 | 4.604e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.161365380243744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1225233470576775, dt = 0.003217621762889476 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 319.42 us (94.0%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621805568656 cfl multiplier : 0.9999999734716001 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6533e+04 | 30464 | 1 | 4.579e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.298187682224718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12574096882056698, dt = 0.003217621805568656 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 30.57 us (8.3%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.4%)
LB compute : 322.58 us (87.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (62.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218340214426 cfl multiplier : 0.9999999823144 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6566e+04 | 30464 | 1 | 4.577e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.31060185739957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12895859062613563, dt = 0.0032176218340214426 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.8%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 327.16 us (93.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621852989967 cfl multiplier : 0.9999999882095999 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6284e+04 | 30464 | 1 | 4.596e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.20347637378809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13217621246015707, dt = 0.003217621852989967 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 319.08 us (94.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.00321762186563565 cfl multiplier : 0.9999999921397332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6487e+04 | 30464 | 1 | 4.582e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.280463485381294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13539383431314703, dt = 0.00321762186563565 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.8%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 351.09 us (94.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218740661055 cfl multiplier : 0.9999999947598223 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3157e+04 | 30464 | 1 | 4.824e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.014413717247365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13861145617878268, dt = 0.0032176218740661055 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 371.84 us (94.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621879686409 cfl multiplier : 0.9999999965065482 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4429e+04 | 30464 | 1 | 4.728e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.49798180195223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14182907805284878, dt = 0.003217621879686409 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 373.92 us (94.9%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218834332783 cfl multiplier : 0.9999999976710322 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5999e+04 | 30464 | 1 | 4.616e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.094930097497578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1450466999325352, dt = 0.0032176218834332783 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 342.22 us (94.1%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (62.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621885931191 cfl multiplier : 0.9999999984473549 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6406e+04 | 30464 | 1 | 4.588e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.249679870273575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14826432181596846, dt = 0.003217621885931191 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.4%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 397.19 us (95.3%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218875964663 cfl multiplier : 0.9999999989649032 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6623e+04 | 30464 | 1 | 4.573e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.332363113429526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15148194370189966, dt = 0.0032176218875964663 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 351.14 us (94.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218887066494 cfl multiplier : 0.9999999993099354 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3228e+04 | 30464 | 1 | 4.818e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.041474256659264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15469956558949613, dt = 0.0032176218887066494 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 343.98 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621889446772 cfl multiplier : 0.999999999539957 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6575e+04 | 30464 | 1 | 4.576e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.3141480281598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15791718747820277, dt = 0.003217621889446772 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (1.7%)
patch tree reduce : 2.21 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 395.42 us (94.7%)
LB move op cnt : 0
LB apply : 4.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (73.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218899401857 cfl multiplier : 0.9999999996933046 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4703e+04 | 30464 | 1 | 4.708e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.60235599277983 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16113480936764954, dt = 0.0032176218899401857 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.9%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 325.44 us (94.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890269129 cfl multiplier : 0.9999999997955363 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6251e+04 | 30464 | 1 | 4.598e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.19086150829894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16435243125758972, dt = 0.003217621890269129 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 348.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890488425 cfl multiplier : 0.9999999998636909 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6252e+04 | 30464 | 1 | 4.598e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.191262202619917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16757005314785886, dt = 0.003217621890488425 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.9%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 321.69 us (93.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890634622 cfl multiplier : 0.9999999999091272 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6573e+04 | 30464 | 1 | 4.576e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.313442001409697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1707876750383473, dt = 0.003217621890634622 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 327.71 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218907320865 cfl multiplier : 0.9999999999394182 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6006e+04 | 30464 | 1 | 4.615e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.097870199288735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17400529692898192, dt = 0.0032176218907320865 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 354.44 us (94.7%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218907970632 cfl multiplier : 0.9999999999596122 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4203e+04 | 30464 | 1 | 4.745e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.412118901671505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.177222918819714, dt = 0.0032176218907970632 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (1.9%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 327.75 us (93.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890840381 cfl multiplier : 0.9999999999730749 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3965e+04 | 30464 | 1 | 4.763e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.321604040106173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18044054071051105, dt = 0.003217621890840381 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.0%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 336.02 us (94.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218908692594 cfl multiplier : 0.9999999999820499 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5754e+04 | 30464 | 1 | 4.633e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.001733482878823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18365816260135143, dt = 0.0032176218908692594 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.6%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 352.01 us (94.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218908885113 cfl multiplier : 0.9999999999880332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6184e+04 | 30464 | 1 | 4.603e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.165571000913626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1868757844922207, dt = 0.0032176218908885113 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.4%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 424.09 us (95.2%)
LB move op cnt : 0
LB apply : 4.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890901346 cfl multiplier : 0.999999999992022 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6115e+04 | 30464 | 1 | 4.608e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.139090661058642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1900934063831092, dt = 0.003217621890901346 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 321.41 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890909902 cfl multiplier : 0.9999999999946813 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5531e+04 | 30464 | 1 | 4.649e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.917120333195307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19331102827401056, dt = 0.003217621890909902 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 366.32 us (94.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890915607 cfl multiplier : 0.9999999999964541 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5887e+04 | 30464 | 1 | 4.624e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.05231282379928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19652865016492047, dt = 0.003217621890915607 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 354.09 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.00321762189091941 cfl multiplier : 0.999999999997636 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4415e+04 | 30464 | 1 | 4.729e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.492813771948335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19974627205583606, dt = 0.0002537279441639506 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 356.77 us (94.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (77.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890921945 cfl multiplier : 0.999999999998424 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5744e+04 | 30464 | 1 | 4.634e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.971235639705982 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 68 [SPH][rank=0]
Info: time since start : 45.293734614 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006556024000000001 s
Info: evolve_until (target_time = 0.30s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.2, dt = 0.003217621890921945 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.16 us (2.1%)
patch tree reduce : 1.89 us (0.4%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 382.88 us (89.1%)
LB move op cnt : 0
LB apply : 28.18 us (6.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890923635 cfl multiplier : 0.9999999999989493 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6059e+04 | 30464 | 1 | 4.612e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.11773866905848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20321762189092196, dt = 0.003217621890923635 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 328.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909247623 cfl multiplier : 0.9999999999992996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5976e+04 | 30464 | 1 | 4.617e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.086339733386698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2064352437818456, dt = 0.0032176218909247623 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.4%)
patch tree reduce : 2.06 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 443.33 us (95.2%)
LB move op cnt : 0
LB apply : 4.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890925514 cfl multiplier : 0.9999999999995332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5869e+04 | 30464 | 1 | 4.625e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.04578311030157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20965286567277036, dt = 0.003217621890925514 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.5%)
patch tree reduce : 2.18 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 411.98 us (94.9%)
LB move op cnt : 0
LB apply : 4.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909260148 cfl multiplier : 0.9999999999996888 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5763e+04 | 30464 | 1 | 4.632e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.005193961073658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21287048756369586, dt = 0.0032176218909260148 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 327.66 us (94.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (64.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909263487 cfl multiplier : 0.9999999999997925 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3667e+04 | 30464 | 1 | 4.785e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.208150236918136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21608810945462187, dt = 0.0032176218909263487 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 342.62 us (94.3%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890926571 cfl multiplier : 0.9999999999998618 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6036e+04 | 30464 | 1 | 4.613e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.109207327877296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2193057313455482, dt = 0.003217621890926571 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 348.77 us (94.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.00321762189092672 cfl multiplier : 0.999999999999908 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6013e+04 | 30464 | 1 | 4.615e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.100212496324644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22252335323647476, dt = 0.00321762189092672 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.5%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 380.35 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890926819 cfl multiplier : 0.9999999999999387 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9527e+04 | 30464 | 1 | 5.118e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.634009077283476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2257409751274015, dt = 0.003217621890926819 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 369.45 us (94.8%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909268847 cfl multiplier : 0.9999999999999591 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2341e+04 | 30464 | 1 | 4.887e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.704048085566566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2289585970183283, dt = 0.0032176218909268847 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.4%)
patch tree reduce : 1.98 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.2%)
LB compute : 456.28 us (95.4%)
LB move op cnt : 0
LB apply : 4.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909269285 cfl multiplier : 0.9999999999999728 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5828e+04 | 30464 | 1 | 5.457e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.227678375966956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2321762189092552, dt = 0.0032176218909269285 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.3%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.2%)
LB compute : 417.75 us (95.3%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890926958 cfl multiplier : 0.9999999999999819 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4393e+04 | 30464 | 1 | 4.731e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.484478173642664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2353938408001821, dt = 0.003217621890926958 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.0%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 321.77 us (93.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890926977 cfl multiplier : 0.9999999999999879 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6339e+04 | 30464 | 1 | 4.592e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.224334182422524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23861146269110906, dt = 0.003217621890926977 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.5%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 364.53 us (94.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.00321762189092699 cfl multiplier : 0.999999999999992 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3656e+04 | 30464 | 1 | 4.786e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.20409486916326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24182908458203603, dt = 0.00321762189092699 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.5%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 391.90 us (95.1%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (59.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890926999 cfl multiplier : 0.9999999999999947 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3001e+04 | 30464 | 1 | 4.835e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.955156436832958 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24504670647296303, dt = 0.003217621890926999 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.6%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 362.62 us (94.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270044 cfl multiplier : 0.9999999999999964 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6177e+04 | 30464 | 1 | 4.603e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.162616852417287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24826432836389004, dt = 0.0032176218909270044 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 348.37 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270083 cfl multiplier : 0.9999999999999977 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6326e+04 | 30464 | 1 | 4.593e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.219431840760464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25148195025481707, dt = 0.0032176218909270083 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.8%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 334.68 us (93.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.003217621890927012 cfl multiplier : 0.9999999999999986 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6080e+04 | 30464 | 1 | 4.610e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.125990817804137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25469957214574407, dt = 0.003217621890927012 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.5%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 405.14 us (95.2%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270135 cfl multiplier : 0.9999999999999991 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5911e+04 | 30464 | 1 | 4.622e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.06144517978627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25791719403667107, dt = 0.0032176218909270135 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.4%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 364.31 us (94.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (62.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270144 cfl multiplier : 0.9999999999999994 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5890e+04 | 30464 | 1 | 4.623e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.053533775186658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2611348159275981, dt = 0.0032176218909270144 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.3%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 379.17 us (95.3%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6205e+04 | 30464 | 1 | 4.601e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.173521603026444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2643524378185251, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 318.85 us (94.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3037e+04 | 30464 | 1 | 4.833e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.968861978343092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2675700597094521, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (0.5%)
patch tree reduce : 1.77 us (0.2%)
gen split merge : 791.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.34 us (0.1%)
LB compute : 1.08 ms (95.7%)
LB move op cnt : 0
LB apply : 31.41 us (2.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5819e+04 | 30464 | 1 | 4.628e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.026607576619973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2707876816003791, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (1.9%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 349.13 us (94.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (64.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0243e+04 | 30464 | 1 | 5.057e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.90630388538163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2740053034913061, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 330.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (64.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4764e+04 | 30464 | 1 | 4.704e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.62544980313855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2772229253822331, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 320.68 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6305e+04 | 30464 | 1 | 4.595e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.211513510635484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2804405472731601, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 323.85 us (94.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6499e+04 | 30464 | 1 | 4.581e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.285316032784127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2836581691640871, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 348.05 us (94.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6613e+04 | 30464 | 1 | 4.573e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.328339885304672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2868757910550141, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.6%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 358.83 us (94.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5383e+04 | 30464 | 1 | 4.659e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.86070934091387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2900934129459411, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.0%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 321.65 us (93.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5116e+04 | 30464 | 1 | 4.678e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.759191479905965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2933110348368681, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.7%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 342.54 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6332e+04 | 30464 | 1 | 4.593e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.221536353169704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2965286567277951, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 323.53 us (94.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6250e+04 | 30464 | 1 | 4.598e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.190536764552846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2997462786187221, dt = 0.0002537213812779382 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.5%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 375.52 us (94.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0259e+04 | 30464 | 1 | 5.056e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8067204963697912 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 100 [SPH][rank=0]
Info: time since start : 60.91889296 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0075017320000000005 s
Info: evolve_until (target_time = 0.40s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.30000000000000004, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.01 us (2.2%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 425.13 us (94.7%)
LB move op cnt : 0
LB apply : 4.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6193e+04 | 30464 | 1 | 4.602e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.168968591614853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30321762189092705, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (1.8%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 345.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6524e+04 | 30464 | 1 | 4.579e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.294586329497488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30643524378185405, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1.85 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 399.84 us (95.4%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6294e+04 | 30464 | 1 | 4.595e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.207161280470352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30965286567278105, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.8%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 365.38 us (94.2%)
LB move op cnt : 0
LB apply : 4.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6501e+04 | 30464 | 1 | 4.581e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.285885050222646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31287048756370806, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 342.96 us (95.0%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7109e+04 | 30464 | 1 | 4.539e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.51721590862175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31608810945463506, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 22.00 us (6.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 316.69 us (88.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6822e+04 | 30464 | 1 | 4.559e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.407911287650077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31930573134556206, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.4%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 369.90 us (95.1%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6797e+04 | 30464 | 1 | 4.561e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.398382553643536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32252335323648906, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 327.56 us (93.8%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5196e+04 | 30464 | 1 | 4.673e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.789854409812897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32574097512741607, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.4%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 416.64 us (95.2%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (73.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9933e+04 | 30464 | 1 | 5.083e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.788505339154085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32895859701834307, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.4%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 384.54 us (94.9%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (63.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6171e+04 | 30464 | 1 | 4.604e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.16062736523529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33217621890927007, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.9%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 320.78 us (93.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5499e+04 | 30464 | 1 | 4.651e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.90479561833858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3353938408001971, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.5%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.4%)
LB compute : 357.21 us (94.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6089e+04 | 30464 | 1 | 4.610e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.129236477535198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3386114626911241, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (1.9%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 325.00 us (93.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6728e+04 | 30464 | 1 | 4.565e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.372289486758188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 346.16 us (94.2%)
LB move op cnt : 0
LB apply : 4.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6745e+04 | 30464 | 1 | 4.564e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.37874330901679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 325.73 us (94.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6545e+04 | 30464 | 1 | 4.578e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.30272606424231 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (1.5%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 1.08 us (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 424.99 us (95.0%)
LB move op cnt : 0
LB apply : 4.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6340e+04 | 30464 | 1 | 4.592e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.224600316371653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 345.50 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5888e+04 | 30464 | 1 | 4.624e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.05272770534933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.5%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 351.03 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6429e+04 | 30464 | 1 | 4.586e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.25851982996009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.4%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 397.19 us (95.3%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6489e+04 | 30464 | 1 | 4.582e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.281464619864582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 320.68 us (93.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5755e+04 | 30464 | 1 | 4.633e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.0021666586889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.6%)
patch tree reduce : 1.82 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 395.68 us (95.0%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (78.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0151e+04 | 30464 | 1 | 5.065e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.87150236235475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (1.8%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 362.07 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6418e+04 | 30464 | 1 | 4.587e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.254340045279697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.6%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.4%)
LB compute : 360.43 us (94.2%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9202e+04 | 30464 | 1 | 5.146e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.510478280895597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3740053034913211, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (1.9%)
patch tree reduce : 2.86 us (0.8%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 345.23 us (93.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6403e+04 | 30464 | 1 | 4.588e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.24883207450979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3772229253822481, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 375.06 us (95.0%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3400e+04 | 30464 | 1 | 4.805e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.106786264936915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.7%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 339.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (72.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6580e+04 | 30464 | 1 | 4.576e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.315980627295076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (1.8%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 388.76 us (94.3%)
LB move op cnt : 0
LB apply : 4.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0126e+04 | 30464 | 1 | 5.067e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.862025219656413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.6%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 366.49 us (94.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6319e+04 | 30464 | 1 | 4.594e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.21656368001029 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.7%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 355.45 us (94.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6323e+04 | 30464 | 1 | 4.593e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.21815650968345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 348.95 us (94.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3315e+04 | 30464 | 1 | 4.811e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.074509943676745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 315.49 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (64.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6740e+04 | 30464 | 1 | 4.565e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.376778597587606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3997462786187371, dt = 0.0002537213812628947 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.7%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 341.77 us (94.4%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5830e+04 | 30464 | 1 | 4.628e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9737548138852505 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 132 [SPH][rank=0]
Info: time since start : 76.358662737 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006770435 s
Info: evolve_until (target_time = 0.50s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.4, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.50 us (2.3%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 393.48 us (94.4%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4778e+04 | 30464 | 1 | 4.703e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.630723429586084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.403217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.7%)
patch tree reduce : 2.33 us (0.6%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.58 us (0.4%)
LB compute : 359.24 us (94.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6386e+04 | 30464 | 1 | 4.589e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.2423020630771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.406435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.71 us (0.5%)
LB compute : 325.02 us (93.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8087e+04 | 30464 | 1 | 5.245e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.086593692927977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40965286567278103, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.8%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 341.78 us (94.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6592e+04 | 30464 | 1 | 4.575e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.320503853249217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41287048756370803, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.0%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 325.53 us (93.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (59.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5179e+04 | 30464 | 1 | 4.674e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.783309867826123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41608810945463504, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.9%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 341.52 us (93.9%)
LB move op cnt : 0
LB apply : 4.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6070e+04 | 30464 | 1 | 4.611e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.12216822444724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41930573134556204, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 351.50 us (94.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2583e+04 | 30464 | 1 | 4.868e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.796279694070805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42252335323648904, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.8%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 345.79 us (94.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9763e+04 | 30464 | 1 | 5.097e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.723848019953962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42574097512741604, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 323.90 us (93.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6488e+04 | 30464 | 1 | 4.582e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.28097155774135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42895859701834305, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.9%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 328.68 us (93.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (73.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4081e+04 | 30464 | 1 | 4.754e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.36568767375777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43217621890927005, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 318.58 us (94.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1614e+04 | 30464 | 1 | 4.944e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.42784904665363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43539384080019705, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 320.88 us (94.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7018e+04 | 30464 | 1 | 4.546e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.482611404004917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43861146269112405, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 326.76 us (94.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6651e+04 | 30464 | 1 | 4.571e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.342932884904293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44182908458205106, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.6%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 363.47 us (94.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (63.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6397e+04 | 30464 | 1 | 4.588e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.246387512056756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44504670647297806, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.7%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 376.04 us (94.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (62.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0273e+04 | 30464 | 1 | 5.054e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.91775887144634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44826432836390506, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 375.66 us (94.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5893e+04 | 30464 | 1 | 4.623e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.054623048889997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45148195025483207, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.8%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 325.98 us (94.0%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6498e+04 | 30464 | 1 | 4.581e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.28460541790664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45469957214575907, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.3%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 390.81 us (95.0%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6500e+04 | 30464 | 1 | 4.581e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.285555415504028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45791719403668607, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 362.61 us (94.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1983e+04 | 30464 | 1 | 4.915e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.567835455254937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 356.33 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5805e+04 | 30464 | 1 | 4.629e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.021128546444025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.6%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.4%)
LB compute : 359.00 us (94.3%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6212e+04 | 30464 | 1 | 4.601e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.176093139333418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 317.44 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5821e+04 | 30464 | 1 | 4.628e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.027401692284894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 360.52 us (94.2%)
LB move op cnt : 0
LB apply : 4.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6345e+04 | 30464 | 1 | 4.592e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.22670305441476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4740053034913211, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 321.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5124e+04 | 30464 | 1 | 4.678e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.762151808471053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4772229253822481, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 349.81 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6932e+04 | 30464 | 1 | 4.552e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.44967514826292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 319.82 us (94.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6294e+04 | 30464 | 1 | 4.595e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.20736117098386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 320.03 us (94.0%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5289e+04 | 30464 | 1 | 4.666e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.825145233090236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.4%)
patch tree reduce : 1.31 us (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 366.08 us (95.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (62.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4306e+04 | 30464 | 1 | 4.737e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.451327048272123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 350.92 us (94.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2511e+04 | 30464 | 1 | 4.873e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.768773895735848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 333.53 us (94.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6926e+04 | 30464 | 1 | 4.552e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.447415718926035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 348.30 us (94.8%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6885e+04 | 30464 | 1 | 4.555e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.43201547425453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4997462786187371, dt = 0.0002537213812628947 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 321.86 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6985e+04 | 30464 | 1 | 4.548e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0084122110777005 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 164 [SPH][rank=0]
Info: time since start : 91.88831960600001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006486670000000001 s
Info: evolve_until (target_time = 0.60s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.5, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.38 us (2.4%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 368.32 us (94.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6872e+04 | 30464 | 1 | 4.556e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.426821995323788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.503217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.4%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 349.05 us (95.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5429e+04 | 30464 | 1 | 4.656e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.878373849867415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.506435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 321.19 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6946e+04 | 30464 | 1 | 4.551e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.455131647901464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.509652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 343.38 us (94.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7178e+04 | 30464 | 1 | 4.535e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.543513437611285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.512870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.4%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.53 us (0.4%)
LB compute : 386.32 us (95.2%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5155e+04 | 30464 | 1 | 4.676e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.774281559870783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.516088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 370.98 us (95.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6748e+04 | 30464 | 1 | 4.564e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.379987166353327 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.519305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 353.56 us (94.3%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0296e+04 | 30464 | 1 | 5.052e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.926716272471737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.522523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 308.82 us (94.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.67 us (94.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6559e+04 | 30464 | 1 | 4.577e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.30790280770408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.525740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 353.02 us (94.3%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6654e+04 | 30464 | 1 | 4.570e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.34393789743273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.528958597018343, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 309.96 us (94.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6805e+04 | 30464 | 1 | 4.560e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.401485069727634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.53217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 386.25 us (95.5%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6692e+04 | 30464 | 1 | 4.568e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.358541442410637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.535393840800197, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 314.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3604e+04 | 30464 | 1 | 4.790e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.184393554034205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.538611462691124, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 310.18 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7035e+04 | 30464 | 1 | 4.544e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.489150140698726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.541829084582051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 314.64 us (94.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6785e+04 | 30464 | 1 | 4.562e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.39382628579355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.545046706472978, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 356.00 us (94.9%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5481e+04 | 30464 | 1 | 4.652e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.898178052546573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.548264328363905, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.5%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 376.43 us (95.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2690e+04 | 30464 | 1 | 4.859e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.836924357305563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.551481950254832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.4%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 346.45 us (95.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6573e+04 | 30464 | 1 | 4.576e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.313351173359198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.554699572145759, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 341.21 us (94.9%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3594e+04 | 30464 | 1 | 4.790e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.180495602426387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.557917194036686, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.4%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 392.22 us (95.3%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4281e+04 | 30464 | 1 | 4.739e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.441823448150295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.561134815927613, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.3%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 377.85 us (95.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (59.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6967e+04 | 30464 | 1 | 4.549e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.462957038807023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.56435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 384.92 us (95.3%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6771e+04 | 30464 | 1 | 4.562e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.388680999990182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 353.08 us (94.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7008e+04 | 30464 | 1 | 4.546e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.478882581737604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.3%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 375.49 us (95.3%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3311e+04 | 30464 | 1 | 4.812e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.073066809025356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5740053034913211, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.3%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 361.73 us (95.1%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7007e+04 | 30464 | 1 | 4.546e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.47841546988418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5772229253822481, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 365.49 us (94.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5441e+04 | 30464 | 1 | 4.655e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.882927623371508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 314.37 us (94.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7089e+04 | 30464 | 1 | 4.541e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.50952758049318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 343.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1346e+04 | 30464 | 1 | 4.966e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.32592947687243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.4%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 370.14 us (94.9%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7008e+04 | 30464 | 1 | 4.546e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.47857535639269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 316.37 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (63.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9348e+04 | 30464 | 1 | 5.133e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.566055616635694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 336.75 us (94.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5468e+04 | 30464 | 1 | 4.653e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.89312101284146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.3%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 379.21 us (95.3%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6866e+04 | 30464 | 1 | 4.556e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.424674994701594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5997462786187371, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.3%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 421.50 us (95.7%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7013e+04 | 30464 | 1 | 4.546e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0092405542164187 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 196 [SPH][rank=0]
Info: time since start : 107.44368802400001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00672262 s
Info: evolve_until (target_time = 0.70s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.6000000000000001, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.82 us (2.3%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 461.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 366.28 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1380e+04 | 30464 | 1 | 4.963e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.338591864443355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6032176218909271, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 320.02 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7027e+04 | 30464 | 1 | 4.545e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.485868717596222 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6064352437818541, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 325.26 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6099e+04 | 30464 | 1 | 4.609e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.133044044730482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6096528656727811, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.3%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 373.12 us (95.2%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4721e+04 | 30464 | 1 | 4.707e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.609018935233845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6128704875637081, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.2%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 398.11 us (95.5%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5690e+04 | 30464 | 1 | 4.638e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.97765267751933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6160881094546351, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 318.21 us (94.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3180e+04 | 30464 | 1 | 4.822e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.023082620744688 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6193057313455621, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.3%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 355.23 us (95.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6928e+04 | 30464 | 1 | 4.552e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.448185496753567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6225233532364891, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.5%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 362.13 us (94.9%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6943e+04 | 30464 | 1 | 4.551e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.454162153455368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6257409751274161, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 314.64 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4683e+04 | 30464 | 1 | 4.710e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.59476512078479 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6289585970183431, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 325.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3097e+04 | 30464 | 1 | 4.828e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.991585387410144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6321762189092701, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.3%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 375.62 us (95.2%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6726e+04 | 30464 | 1 | 4.566e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.371635160064038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6353938408001971, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.4%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 390.66 us (95.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0584e+04 | 30464 | 1 | 5.028e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.03616222931164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6386114626911241, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 347.15 us (94.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9564e+04 | 30464 | 1 | 5.115e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.648164705388503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 352.70 us (94.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6539e+04 | 30464 | 1 | 4.578e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.300479167062928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.5%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 362.08 us (94.8%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6821e+04 | 30464 | 1 | 4.559e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.407544412746738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 373.09 us (94.8%)
LB move op cnt : 0
LB apply : 4.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6899e+04 | 30464 | 1 | 4.554e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.4372853692861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.3%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.3%)
LB compute : 385.53 us (95.2%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4306e+04 | 30464 | 1 | 4.737e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.451458303331236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.4%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 387.79 us (95.1%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6768e+04 | 30464 | 1 | 4.563e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.387572501917674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.5%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 326.09 us (94.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2939e+04 | 30464 | 1 | 4.840e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.931414711927783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 306.84 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6607e+04 | 30464 | 1 | 4.574e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.32618799818036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.8%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 334.36 us (94.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6636e+04 | 30464 | 1 | 4.572e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.33719062191121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.87 us (1.8%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 411.73 us (94.6%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (73.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6348e+04 | 30464 | 1 | 4.592e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.227844745682226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.4%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 351.66 us (94.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (9.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6688e+04 | 30464 | 1 | 4.568e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.356882427036123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6740053034913212, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 336.08 us (94.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2433e+04 | 30464 | 1 | 4.879e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.73908718344383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6772229253822482, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 335.83 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6700e+04 | 30464 | 1 | 4.567e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.36158098018303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6804405472731752, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 313.39 us (93.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6772e+04 | 30464 | 1 | 4.562e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.38881232789584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6836581691641022, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 322.40 us (94.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0322e+04 | 30464 | 1 | 5.050e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.936447194284753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6868757910550292, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.3%)
patch tree reduce : 2.12 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 379.24 us (95.1%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4724e+04 | 30464 | 1 | 4.707e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.61010320437273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6900934129459562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.5%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 355.74 us (94.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6941e+04 | 30464 | 1 | 4.551e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.45324581080562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6933110348368832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 360.73 us (95.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6645e+04 | 30464 | 1 | 4.571e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.340581827376695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6965286567278102, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 319.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3454e+04 | 30464 | 1 | 4.801e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.127417062380136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6997462786187372, dt = 0.0002537213812628947 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.8%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.4%)
LB compute : 343.01 us (93.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6540e+04 | 30464 | 1 | 4.578e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.99505956730824 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 228 [SPH][rank=0]
Info: time since start : 122.924901687 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006064726 s
Info: evolve_until (target_time = 0.80s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.7000000000000001, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.37 us (2.1%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 421.58 us (95.1%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6758e+04 | 30464 | 1 | 4.563e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.383759742875245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7032176218909271, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 339.35 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2549e+04 | 30464 | 1 | 4.870e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.783240166374892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7064352437818541, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 316.48 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6576e+04 | 30464 | 1 | 4.576e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.3144120396466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7096528656727811, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.8%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 319.66 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6647e+04 | 30464 | 1 | 4.571e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.34159158767964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7128704875637081, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.4%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 396.50 us (94.9%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1585e+04 | 30464 | 1 | 4.947e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.41680110518031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7160881094546351, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.5%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 373.78 us (94.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6572e+04 | 30464 | 1 | 4.576e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.31275049593893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7193057313455621, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 320.19 us (93.6%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6302e+04 | 30464 | 1 | 4.595e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.21009978178486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7225233532364891, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 327.83 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6826e+04 | 30464 | 1 | 4.559e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.409323712820505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7257409751274161, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 310.38 us (93.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6921e+04 | 30464 | 1 | 4.552e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.44549838129717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7289585970183431, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 369.85 us (95.0%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5502e+04 | 30464 | 1 | 4.651e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.90599425361215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7321762189092701, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.3%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 383.56 us (95.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0240e+04 | 30464 | 1 | 5.057e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.90519881993053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7353938408001971, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 347.02 us (94.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6534e+04 | 30464 | 1 | 4.579e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.298417320243153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7386114626911241, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 353.85 us (94.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3064e+04 | 30464 | 1 | 4.831e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.97921202867732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 374.85 us (94.9%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5220e+04 | 30464 | 1 | 4.671e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.79868685819719 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 317.53 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6990e+04 | 30464 | 1 | 4.548e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.471767077783078 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 357.45 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7072e+04 | 30464 | 1 | 4.542e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.50302448475952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.48 us (3.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 310.76 us (91.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6510e+04 | 30464 | 1 | 4.580e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.28922819297144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 437.62 us (53.9%)
patch tree reduce : 1.76 us (0.2%)
gen split merge : 922.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.19 us (0.1%)
LB compute : 360.16 us (44.3%)
LB move op cnt : 0
LB apply : 3.76 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9269e+04 | 30464 | 1 | 5.140e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.536142284394153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 325.64 us (94.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3731e+04 | 30464 | 1 | 4.780e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.23283201075141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.7%)
patch tree reduce : 24.38 us (6.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 330.90 us (88.3%)
LB move op cnt : 0
LB apply : 4.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6704e+04 | 30464 | 1 | 4.567e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.3630444044699 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.4%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 373.94 us (95.3%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6310e+04 | 30464 | 1 | 4.594e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.213398216873752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 358.85 us (94.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2065e+04 | 30464 | 1 | 4.908e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.59914215760976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 331.17 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6456e+04 | 30464 | 1 | 4.584e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.26879446042023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7740053034913211, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.5%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 367.83 us (94.4%)
LB move op cnt : 0
LB apply : 4.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1461e+04 | 30464 | 1 | 4.957e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.369352441813973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7772229253822481, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.2%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 364.42 us (95.2%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6321e+04 | 30464 | 1 | 4.593e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.217316644930563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 317.51 us (94.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7130e+04 | 30464 | 1 | 5.332e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.722749611510764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 311.08 us (94.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6991e+04 | 30464 | 1 | 4.547e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.472122870616815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 332.75 us (94.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9410e+04 | 30464 | 1 | 5.128e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.589543768541933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 2.34 us (0.6%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 336.56 us (89.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6867e+04 | 30464 | 1 | 4.556e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.42507752272367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.4%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 338.09 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5707e+04 | 30464 | 1 | 4.636e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.983951514001067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 363.52 us (94.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5925e+04 | 30464 | 1 | 4.621e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.067019508704412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7997462786187371, dt = 0.0002537213812628947 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 368.51 us (95.0%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7731e+04 | 30464 | 1 | 5.277e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7309411243675197 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 260 [SPH][rank=0]
Info: time since start : 138.555471748 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.007289645000000001 s
Info: evolve_until (target_time = 0.90s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.8, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.41 us (2.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 376.76 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4263e+04 | 30464 | 1 | 4.741e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.435022335475583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.803217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 349.09 us (94.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6820e+04 | 30464 | 1 | 4.559e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.4070389530585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.806435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 317.15 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (58.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6195e+04 | 30464 | 1 | 4.602e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.169457677352902 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.809652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 350.80 us (94.8%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6724e+04 | 30464 | 1 | 4.566e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.370772482956063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.812870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 359.30 us (95.0%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5030e+04 | 30464 | 1 | 4.685e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.726719755405316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8160881094546351, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 377.83 us (95.1%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7021e+04 | 30464 | 1 | 4.545e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.4836415416498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8193057313455621, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.4%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 349.91 us (94.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6673e+04 | 30464 | 1 | 4.569e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.351141331739477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8225233532364891, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 324.66 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (64.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1076e+04 | 30464 | 1 | 4.988e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.223286745947547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8257409751274161, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 307.85 us (94.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0127e+04 | 30464 | 1 | 5.067e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.86231806758068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8289585970183431, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (1.8%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 359.71 us (94.1%)
LB move op cnt : 0
LB apply : 4.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7000e+04 | 30464 | 1 | 4.547e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.475600776027505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8321762189092701, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 343.12 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2663e+04 | 30464 | 1 | 4.862e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.82669743260565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8353938408001971, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.5%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 317.69 us (94.1%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6614e+04 | 30464 | 1 | 4.573e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.328904969964682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8386114626911241, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 311.70 us (93.9%)
LB move op cnt : 0
LB apply : 4.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4063e+04 | 30464 | 1 | 4.755e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.358755363283308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 341.44 us (94.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (64.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6966e+04 | 30464 | 1 | 4.549e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.462635756671034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 341.89 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6997e+04 | 30464 | 1 | 4.547e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.474327136880095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 312.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7024e+04 | 30464 | 1 | 4.545e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.484680285032006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 315.29 us (94.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7112e+04 | 30464 | 1 | 4.539e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.518259189855844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 323.32 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5394e+04 | 30464 | 1 | 4.659e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.864856547216963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 374.69 us (95.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8803e+04 | 30464 | 1 | 5.181e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.358933009165963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 340.56 us (94.5%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6615e+04 | 30464 | 1 | 4.573e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.329100371174043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 317.04 us (93.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9782e+04 | 30464 | 1 | 5.096e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.73100366373526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 317.31 us (93.9%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1311e+04 | 30464 | 1 | 4.969e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.312432000988295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 348.14 us (94.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4379e+04 | 30464 | 1 | 4.732e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.479106973067008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8740053034913211, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 316.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2856e+04 | 30464 | 1 | 4.847e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.89995885380093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8772229253822481, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.5%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 318.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (60.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6526e+04 | 30464 | 1 | 4.579e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.29542709575747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 345.22 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6469e+04 | 30464 | 1 | 4.583e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.273873947972586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.4%)
patch tree reduce : 2.16 us (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.69 us (0.4%)
LB compute : 385.02 us (94.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6820e+04 | 30464 | 1 | 4.559e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.407246763102194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 323.04 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6761e+04 | 30464 | 1 | 4.563e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.384926542606163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 340.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2335e+04 | 30464 | 1 | 4.887e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.701862885490023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 338.32 us (94.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6646e+04 | 30464 | 1 | 4.571e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.340959854381072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.4%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 374.22 us (95.1%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2742e+04 | 30464 | 1 | 4.855e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.856655300012232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8997462786187371, dt = 0.0002537213812628947 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.8%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 345.39 us (94.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6617e+04 | 30464 | 1 | 4.573e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9973762832726938 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 292 [SPH][rank=0]
Info: time since start : 154.083499308 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006498297 s
Info: evolve_until (target_time = 1.00s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.9, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.85 us (2.5%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 374.84 us (94.1%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6185e+04 | 30464 | 1 | 4.603e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.165798554106715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.903217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.01 us (1.8%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.2%)
LB compute : 412.32 us (94.8%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3222e+04 | 30464 | 1 | 4.819e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.039259256051427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.906435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 348.54 us (94.3%)
LB move op cnt : 0
LB apply : 4.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6748e+04 | 30464 | 1 | 4.564e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.37972825337009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.909652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (1.7%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.44 us (0.3%)
LB compute : 394.50 us (94.6%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (76.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6349e+04 | 30464 | 1 | 4.592e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.227981228107605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.912870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 332.47 us (94.4%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6518e+04 | 30464 | 1 | 4.580e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.292449838251606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.916088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.4%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 400.63 us (95.0%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6279e+04 | 30464 | 1 | 4.596e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.201464855936482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.919305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.68 us (0.4%)
LB compute : 379.97 us (94.6%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6550e+04 | 30464 | 1 | 4.578e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.304540242948537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.922523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 350.44 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8619e+04 | 30464 | 1 | 5.197e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.288885601588337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.925740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 338.36 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3838e+04 | 30464 | 1 | 4.772e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.273428710143826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.928958597018343, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 323.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5566e+04 | 30464 | 1 | 4.646e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.930293129641424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.93217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 344.43 us (94.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6696e+04 | 30464 | 1 | 4.568e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.36005015468137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.935393840800197, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 350.57 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (65.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6508e+04 | 30464 | 1 | 4.580e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.288665539787623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.938611462691124, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.4%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.52 us (0.4%)
LB compute : 349.61 us (94.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3197e+04 | 30464 | 1 | 4.821e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.029495409436112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.6%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 360.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6505e+04 | 30464 | 1 | 4.581e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.287256780618847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 312.58 us (93.9%)
LB move op cnt : 0
LB apply : 4.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6472e+04 | 30464 | 1 | 4.583e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.27475381703822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.6%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 348.65 us (94.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2933e+04 | 30464 | 1 | 4.841e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.92918759010562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.5%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 372.83 us (94.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5015e+04 | 30464 | 1 | 4.686e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.720980548125894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.4%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 385.92 us (95.0%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6233e+04 | 30464 | 1 | 4.600e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.184016882755895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.5%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 366.98 us (94.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6542e+04 | 30464 | 1 | 4.578e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.30136177381146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 317.15 us (94.1%)
LB move op cnt : 0
LB apply : 4.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6396e+04 | 30464 | 1 | 4.588e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.245951335485525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (1.9%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 330.26 us (87.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6473e+04 | 30464 | 1 | 4.583e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.275126518375497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 357.51 us (94.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6887e+04 | 30464 | 1 | 4.555e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.432515115816233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 346.19 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7015e+04 | 30464 | 1 | 4.546e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.48145685183926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9740053034913211, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 343.88 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6921e+04 | 30464 | 1 | 4.552e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.44556020294778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9772229253822481, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 362.86 us (94.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6811e+04 | 30464 | 1 | 4.560e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.403950791578445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 21.85 us (6.1%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 319.98 us (88.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1147e+04 | 30464 | 1 | 4.982e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.250027291778807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 357.19 us (94.8%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9686e+04 | 30464 | 1 | 5.104e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.694664821682164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 335.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (64.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6775e+04 | 30464 | 1 | 4.562e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.39023849175197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 350.30 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5459e+04 | 30464 | 1 | 4.654e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.889641104063198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 337.02 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2899e+04 | 30464 | 1 | 4.843e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.91645677535245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 326.25 us (94.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6652e+04 | 30464 | 1 | 4.571e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.343451600038133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9997462786187371, dt = 0.0002537213812628947 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.6%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 382.60 us (94.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4939e+04 | 30464 | 1 | 4.691e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9470669870972166 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 324 [SPH][rank=0]
Info: time since start : 169.53225393600002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006202864000000001 s
Info: evolve_until (target_time = 1.10s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.28 us (2.2%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 406.62 us (94.7%)
LB move op cnt : 0
LB apply : 4.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6953e+04 | 30464 | 1 | 4.550e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.457672586107545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.003217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 328.88 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5053e+04 | 30464 | 1 | 4.683e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.735239677490178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.006435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.8%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 354.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6502e+04 | 30464 | 1 | 4.581e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.286154858109864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.009652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.4%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.50 us (0.4%)
LB compute : 394.95 us (95.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6494e+04 | 30464 | 1 | 4.581e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.283325804727216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.012870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 357.36 us (94.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4030e+04 | 30464 | 1 | 4.758e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.346219644839113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.016088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.4%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 389.71 us (95.2%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6388e+04 | 30464 | 1 | 4.589e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.243110256356257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.019305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.6%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 361.34 us (94.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6387e+04 | 30464 | 1 | 4.589e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.242435731549087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.022523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 316.68 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6606e+04 | 30464 | 1 | 4.574e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.32592204194921 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.025740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 369.57 us (94.7%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9057e+04 | 30464 | 1 | 5.158e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.455569776734478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.028958597018343, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.3%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 426.22 us (95.3%)
LB move op cnt : 0
LB apply : 4.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5649e+04 | 30464 | 1 | 4.640e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.961988353817603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.03217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.8%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 329.98 us (93.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6114e+04 | 30464 | 1 | 4.608e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.138751694595427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.035393840800197, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.4%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.2%)
LB compute : 410.28 us (95.2%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5938e+04 | 30464 | 1 | 4.620e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.071822883459348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.038611462691124, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (1.9%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 331.44 us (93.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (60.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5839e+04 | 30464 | 1 | 4.627e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.03403933566584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.041829084582051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.5%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 396.17 us (95.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5889e+04 | 30464 | 1 | 4.624e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.053147585618657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.045046706472978, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.5%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 393.94 us (94.9%)
LB move op cnt : 0
LB apply : 4.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5666e+04 | 30464 | 1 | 4.639e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.96832186266147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.048264328363905, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.0%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 328.93 us (93.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1489e+04 | 30464 | 1 | 4.954e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.380359798858155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.051481950254832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 318.28 us (94.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6241e+04 | 30464 | 1 | 4.599e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.187015983762944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.054699572145759, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.4%)
patch tree reduce : 1.82 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 408.03 us (95.1%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5814e+04 | 30464 | 1 | 4.629e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.02469062707614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.057917194036686, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.0%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 322.21 us (93.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5978e+04 | 30464 | 1 | 4.617e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.087062664873027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.061134815927613, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.0%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 317.96 us (93.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4842e+04 | 30464 | 1 | 4.698e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.65511798252459 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.06435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.8%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 373.27 us (94.2%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2065e+04 | 30464 | 1 | 4.908e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.599205381591048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.067570059709467, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.7%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 354.87 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (57.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5763e+04 | 30464 | 1 | 4.632e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.005322917020727 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.070787681600394, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.7%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 354.27 us (94.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5442e+04 | 30464 | 1 | 4.655e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.883064034089504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.074005303491321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 375.34 us (94.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5970e+04 | 30464 | 1 | 4.618e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.08398677300705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.077222925382248, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.5%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 398.58 us (94.9%)
LB move op cnt : 0
LB apply : 4.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6168e+04 | 30464 | 1 | 4.604e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.15922802600563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.080440547273175, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.7%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.75 us (0.5%)
LB compute : 361.85 us (94.1%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5838e+04 | 30464 | 1 | 4.627e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.033918090591254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.083658169164102, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.4%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 385.10 us (94.8%)
LB move op cnt : 0
LB apply : 4.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5831e+04 | 30464 | 1 | 4.628e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.031142597508353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.086875791055029, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.8%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 331.61 us (93.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5916e+04 | 30464 | 1 | 4.622e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.06337004231952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.090093412945956, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.7%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 361.42 us (94.4%)
LB move op cnt : 0
LB apply : 4.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4914e+04 | 30464 | 1 | 4.693e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.68243032412547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.093311034836883, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.3%)
patch tree reduce : 1.63 us (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.50 us (0.3%)
LB compute : 446.49 us (95.4%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (75.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0950e+04 | 30464 | 1 | 4.998e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.175186938900328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.09652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.6%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 384.09 us (94.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5893e+04 | 30464 | 1 | 4.623e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.05481348236637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.099746278618737, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.7%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 386.54 us (94.6%)
LB move op cnt : 0
LB apply : 4.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5558e+04 | 30464 | 1 | 4.647e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9656235628655723 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 356 [SPH][rank=0]
Info: time since start : 185.13004800000002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0067368110000000005 s
Info: evolve_until (target_time = 1.20s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1.1, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.44 us (2.1%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 419.18 us (94.9%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5928e+04 | 30464 | 1 | 5.447e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.26575598913018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.103217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.7%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 396.15 us (94.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9624e+04 | 30464 | 1 | 5.109e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.6709531444698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.106435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.70 us (0.4%)
LB compute : 357.67 us (94.2%)
LB move op cnt : 0
LB apply : 4.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6201e+04 | 30464 | 1 | 4.602e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.17180088208935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.109652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.7%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 357.48 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5941e+04 | 30464 | 1 | 4.620e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.07302967265445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.112870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 396.44 us (94.9%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5922e+04 | 30464 | 1 | 4.621e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.06584459495718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.116088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 324.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6173e+04 | 30464 | 1 | 4.604e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.161216799999274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.119305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.9%)
patch tree reduce : 2.35 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 323.34 us (94.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6342e+04 | 30464 | 1 | 4.592e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.22554454670194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.122523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.7%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 335.04 us (94.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4646e+04 | 30464 | 1 | 4.712e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.58056400841277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.125740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.6%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 358.86 us (94.2%)
LB move op cnt : 0
LB apply : 4.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6496e+04 | 30464 | 1 | 4.581e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.2838313208953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1289585970183431, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.8%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 380.81 us (94.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3047e+04 | 30464 | 1 | 4.832e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.972453851110885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1321762189092701, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 344.91 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6370e+04 | 30464 | 1 | 4.590e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.23620207167025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1353938408001971, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.7%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 351.06 us (94.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6200e+04 | 30464 | 1 | 4.602e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.17139801956747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1386114626911241, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.5%)
patch tree reduce : 1.86 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 400.24 us (94.8%)
LB move op cnt : 0
LB apply : 4.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5705e+04 | 30464 | 1 | 4.637e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.98309710948958 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (1.8%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 361.93 us (94.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5688e+04 | 30464 | 1 | 4.638e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.97690442401189 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.6%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 386.76 us (94.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5301e+04 | 30464 | 1 | 4.665e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.829650692389308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (1.8%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 381.66 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (62.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5837e+04 | 30464 | 1 | 4.627e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.033418514841923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (1.6%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 402.29 us (94.9%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7168e+04 | 30464 | 1 | 5.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.73711716788447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (1.8%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.30 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 368.87 us (94.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5879e+04 | 30464 | 1 | 4.624e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.0495961427074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.9%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 331.07 us (93.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6428e+04 | 30464 | 1 | 4.586e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.25801785890142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 350.54 us (94.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (63.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5982e+04 | 30464 | 1 | 4.617e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.088623254417094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.8%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 332.69 us (94.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (64.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6060e+04 | 30464 | 1 | 4.612e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.118274460206123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.8%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 332.48 us (93.8%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6065e+04 | 30464 | 1 | 4.611e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.120283349308973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.5%)
patch tree reduce : 1.87 us (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 24.79 us (5.8%)
LB compute : 384.48 us (89.6%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6089e+04 | 30464 | 1 | 4.610e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.129368024451882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1740053034913212, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 328.55 us (93.9%)
LB move op cnt : 0
LB apply : 4.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8841e+04 | 30464 | 1 | 5.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.373211819951937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1772229253822482, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 378.49 us (94.8%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5986e+04 | 30464 | 1 | 4.617e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.090180940392088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1804405472731752, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 377.35 us (94.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1083e+04 | 30464 | 1 | 4.987e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.225758349502737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1836581691641022, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.1%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 333.11 us (93.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6323e+04 | 30464 | 1 | 5.409e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.41600873651543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1868757910550292, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (1.7%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 376.65 us (94.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5823e+04 | 30464 | 1 | 4.628e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.028055039716502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1900934129459562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (1.7%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 363.87 us (94.4%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2376e+04 | 30464 | 1 | 4.884e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.717620835583997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1933110348368832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 359.10 us (94.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6034e+04 | 30464 | 1 | 4.613e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.108261010575777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1965286567278102, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 400.65 us (95.0%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6035e+04 | 30464 | 1 | 4.613e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.108749535869357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1997462786187372, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.6%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 382.65 us (94.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6043e+04 | 30464 | 1 | 4.613e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9801625439324448 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 388 [SPH][rank=0]
Info: time since start : 200.836440449 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006893801000000001 s
Info: evolve_until (target_time = 1.30s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1.2000000000000002, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.97 us (2.2%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 435.80 us (95.0%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6086e+04 | 30464 | 1 | 4.610e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.12813907120665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2032176218909272, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.5%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 373.00 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (72.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5865e+04 | 30464 | 1 | 4.625e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.044245389414073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2064352437818542, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.0%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 323.39 us (93.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9373e+04 | 30464 | 1 | 5.131e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.57542764307292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2096528656727812, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 321.08 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5455e+04 | 30464 | 1 | 4.654e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.888283401747675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2128704875637082, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.49 us (0.4%)
LB compute : 371.41 us (94.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5751e+04 | 30464 | 1 | 4.633e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.000914717233066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2160881094546352, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 329.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5992e+04 | 30464 | 1 | 4.616e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.092510874438656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2193057313455622, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.8%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 347.07 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5645e+04 | 30464 | 1 | 4.641e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.960292502552324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2225233532364892, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 361.89 us (94.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1617e+04 | 30464 | 1 | 4.944e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.428880204828282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2257409751274162, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (1.7%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 375.13 us (94.3%)
LB move op cnt : 0
LB apply : 4.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2483e+04 | 30464 | 1 | 4.876e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.75812287833597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2289585970183432, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 360.61 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5979e+04 | 30464 | 1 | 4.617e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.08727690094965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2321762189092702, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.8%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 324.53 us (93.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (62.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6482e+04 | 30464 | 1 | 4.582e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.278648366145053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2353938408001972, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.7%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 364.99 us (94.3%)
LB move op cnt : 0
LB apply : 4.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (73.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5888e+04 | 30464 | 1 | 4.624e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.052794731362738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2386114626911242, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 366.65 us (94.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6340e+04 | 30464 | 1 | 4.592e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.224513307255393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2418290845820512, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.6%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 371.37 us (94.8%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5479e+04 | 30464 | 1 | 4.652e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.897272886686732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2450467064729782, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.6%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 362.86 us (94.4%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6217e+04 | 30464 | 1 | 4.601e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.17793052284541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2482643283639052, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 324.67 us (93.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6360e+04 | 30464 | 1 | 4.591e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.232235121090884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2514819502548322, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.7%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 361.61 us (94.1%)
LB move op cnt : 0
LB apply : 4.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4938e+04 | 30464 | 1 | 4.691e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.691636384186424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2546995721457592, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (1.9%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 366.47 us (94.2%)
LB move op cnt : 0
LB apply : 4.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8842e+04 | 30464 | 1 | 5.177e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.37387214129032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2579171940366862, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.8%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 24.88 us (6.8%)
LB compute : 320.17 us (87.7%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (73.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6037e+04 | 30464 | 1 | 4.613e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.109471582327625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2611348159276132, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.8%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 354.78 us (94.1%)
LB move op cnt : 0
LB apply : 4.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5786e+04 | 30464 | 1 | 4.631e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.014118809715484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2643524378185402, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 357.38 us (94.8%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8452e+04 | 30464 | 1 | 5.212e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.22526215546034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2675700597094672, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.7%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 351.69 us (94.5%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (73.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5996e+04 | 30464 | 1 | 4.616e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.093945530725527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2707876816003942, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (1.9%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 346.85 us (94.0%)
LB move op cnt : 0
LB apply : 4.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (63.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6063e+04 | 30464 | 1 | 4.611e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.119292237583863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2740053034913212, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.6%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 371.17 us (94.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6066e+04 | 30464 | 1 | 4.611e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.120440025552124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2772229253822482, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 365.57 us (94.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0901e+04 | 30464 | 1 | 5.002e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.156717234480404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2804405472731752, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.8%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 1.51 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 362.69 us (94.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6097e+04 | 30464 | 1 | 4.609e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.132352214299733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2836581691641022, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (1.9%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 330.92 us (93.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6333e+04 | 30464 | 1 | 4.593e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.221879368439094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2868757910550293, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.6%)
patch tree reduce : 2.46 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 359.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6129e+04 | 30464 | 1 | 4.607e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.14439327382343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2900934129459563, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (1.8%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 369.32 us (94.3%)
LB move op cnt : 0
LB apply : 4.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (59.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3862e+04 | 30464 | 1 | 4.770e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.28234685489813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2933110348368833, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (1.7%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 397.84 us (94.5%)
LB move op cnt : 0
LB apply : 4.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5473e+04 | 30464 | 1 | 4.653e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.894997793497105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2965286567278103, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.9%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 331.12 us (93.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (63.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5994e+04 | 30464 | 1 | 4.616e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.093204318272353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2997462786187373, dt = 0.00025372138126278365 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (1.6%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 402.73 us (94.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6000e+04 | 30464 | 1 | 4.616e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9788541435613634 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 420 [SPH][rank=0]
Info: time since start : 216.40070646200002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006682113000000001 s
Info: evolve_until (target_time = 1.40s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1.3, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.38 us (2.0%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.37 us (0.3%)
LB compute : 438.95 us (94.7%)
LB move op cnt : 0
LB apply : 4.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6197e+04 | 30464 | 1 | 4.602e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.17023392054394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.303217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.7%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 356.14 us (94.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6354e+04 | 30464 | 1 | 4.591e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.230150310081033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.306435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (1.8%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 359.42 us (94.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5925e+04 | 30464 | 1 | 4.621e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.066859429718143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.309652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.5%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 390.47 us (94.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6112e+04 | 30464 | 1 | 4.608e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.13791356445521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.312870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.7%)
patch tree reduce : 2.56 us (0.7%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 343.06 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8459e+04 | 30464 | 1 | 5.211e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.228140944657543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.316088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.6%)
patch tree reduce : 2.45 us (0.6%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 374.91 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4512e+04 | 30464 | 1 | 4.722e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.52974401039666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.319305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (1.8%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 359.68 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (63.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4609e+04 | 30464 | 1 | 4.715e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.5666155657521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.322523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 360.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6092e+04 | 30464 | 1 | 4.609e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.130523603093323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.325740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 329.53 us (93.9%)
LB move op cnt : 0
LB apply : 4.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6308e+04 | 30464 | 1 | 4.594e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.21272401678537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.328958597018343, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.8%)
patch tree reduce : 2.82 us (0.8%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 326.19 us (93.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4911e+04 | 30464 | 1 | 4.693e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.68127156924572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.33217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 366.25 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6308e+04 | 30464 | 1 | 4.594e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.212435414191045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.335393840800197, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (1.6%)
patch tree reduce : 1.86 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 397.49 us (94.9%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6247e+04 | 30464 | 1 | 4.599e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.189521751058184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.338611462691124, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.2%)
patch tree reduce : 1.82 us (0.3%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.38 us (0.3%)
LB compute : 506.19 us (95.8%)
LB move op cnt : 0
LB apply : 3.92 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (63.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5621e+04 | 30464 | 1 | 4.642e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.951342594361478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.341829084582051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (1.7%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 373.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6143e+04 | 30464 | 1 | 4.606e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.149971585793157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.345046706472978, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.0%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 320.12 us (93.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (75.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6258e+04 | 30464 | 1 | 4.598e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.193399445715432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.348264328363905, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.4%)
LB compute : 368.66 us (94.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (64.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6127e+04 | 30464 | 1 | 4.607e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.143528188115347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.351481950254832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.5%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 411.68 us (95.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6146e+04 | 30464 | 1 | 4.606e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.151073575859275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.354699572145759, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.4%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 384.59 us (95.1%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5810e+04 | 30464 | 1 | 4.629e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.023068248377015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.357917194036686, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.7%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 367.58 us (94.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5919e+04 | 30464 | 1 | 4.621e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.064496183583838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.361134815927613, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (1.9%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 357.09 us (94.0%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (63.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5863e+04 | 30464 | 1 | 4.625e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.043322479325965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.36435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.7%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 358.28 us (94.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5681e+04 | 30464 | 1 | 4.638e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.97425980166936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.367570059709467, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.1%)
patch tree reduce : 2.49 us (0.7%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.75 us (0.5%)
LB compute : 334.70 us (92.7%)
LB move op cnt : 0
LB apply : 4.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5610e+04 | 30464 | 1 | 4.643e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.94727856852639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.370787681600394, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 363.72 us (94.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5893e+04 | 30464 | 1 | 4.623e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.05471094924134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.374005303491321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.0%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 320.92 us (93.5%)
LB move op cnt : 0
LB apply : 4.65 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6139e+04 | 30464 | 1 | 4.606e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.14842273764563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.377222925382248, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.7%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 359.39 us (94.2%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5895e+04 | 30464 | 1 | 4.623e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.055458072934606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 328.17 us (94.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1322e+04 | 30464 | 1 | 4.968e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.316707418942766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.9%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 316.57 us (93.5%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5070e+04 | 30464 | 1 | 4.682e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.741722124028215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.7%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 348.18 us (94.3%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6078e+04 | 30464 | 1 | 4.610e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.125222369396912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.6%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 369.91 us (94.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2674e+04 | 30464 | 1 | 4.861e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.83080478933765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.6%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 366.85 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (62.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6000e+04 | 30464 | 1 | 4.616e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.09539187727289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.6%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 354.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6086e+04 | 30464 | 1 | 4.610e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.12822955958333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3997462786187371, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (1.8%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 359.79 us (94.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5369e+04 | 30464 | 1 | 4.660e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9599367779609331 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 452 [SPH][rank=0]
Info: time since start : 231.821720461 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006598588000000001 s
Info: evolve_until (target_time = 1.50s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1.4000000000000001, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.51 us (2.4%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 461.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 377.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3375e+04 | 30464 | 1 | 4.807e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.097163654174015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4032176218909271, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.8%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 333.18 us (94.2%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6231e+04 | 30464 | 1 | 4.600e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.183098644000655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4064352437818541, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.6%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.49 us (0.4%)
LB compute : 395.84 us (94.9%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2188e+04 | 30464 | 1 | 4.899e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.646008986162183 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4096528656727811, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.7%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 359.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6147e+04 | 30464 | 1 | 4.605e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.151396054546314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4128704875637081, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 326.95 us (94.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6044e+04 | 30464 | 1 | 4.613e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.11219865381223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4160881094546351, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 325.75 us (93.6%)
LB move op cnt : 0
LB apply : 4.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6335e+04 | 30464 | 1 | 4.592e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.222717505034588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4193057313455621, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 324.68 us (93.9%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6195e+04 | 30464 | 1 | 4.602e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.169430222858473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4225233532364892, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.5%)
patch tree reduce : 2.12 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 415.20 us (95.1%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3276e+04 | 30464 | 1 | 4.814e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.059800372490205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4257409751274162, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.6%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 388.78 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9512e+04 | 30464 | 1 | 5.119e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.628582601015587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4289585970183432, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 373.22 us (94.8%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5860e+04 | 30464 | 1 | 4.626e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.04237700695845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4321762189092702, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.8%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 327.36 us (94.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5935e+04 | 30464 | 1 | 4.620e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.07062879912152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4353938408001972, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.9%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 335.55 us (93.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5703e+04 | 30464 | 1 | 4.637e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.982525527391488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4386114626911242, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (1.9%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 340.73 us (94.0%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5655e+04 | 30464 | 1 | 4.640e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.964220130652286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4418290845820512, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 379.45 us (94.8%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8369e+04 | 30464 | 1 | 5.219e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.193836907323643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4450467064729782, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.6%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.40 us (0.3%)
LB compute : 383.37 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4233e+04 | 30464 | 1 | 4.743e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.42336930591708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4482643283639052, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 359.14 us (94.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5999e+04 | 30464 | 1 | 4.616e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.09492507467906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4514819502548322, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 332.27 us (94.0%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (61.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5992e+04 | 30464 | 1 | 4.616e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.09240558652214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4546995721457592, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 323.34 us (93.8%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5553e+04 | 30464 | 1 | 4.647e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.925631467127886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4579171940366862, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 373.54 us (94.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6019e+04 | 30464 | 1 | 4.614e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.1024740094885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4611348159276132, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.7%)
patch tree reduce : 2.12 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 369.39 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6143e+04 | 30464 | 1 | 4.606e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.149973551596297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4643524378185402, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 359.10 us (94.4%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5921e+04 | 30464 | 1 | 4.621e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.065250508063862 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4675700597094672, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.8%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 336.09 us (94.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (62.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5890e+04 | 30464 | 1 | 4.623e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.053422961892526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4707876816003942, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (1.7%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 379.22 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5637e+04 | 30464 | 1 | 4.641e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.95737290579986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4740053034913212, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.9%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 332.48 us (93.9%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5928e+04 | 30464 | 1 | 4.621e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.068152596565007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4772229253822482, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.5%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 389.55 us (94.9%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8771e+04 | 30464 | 1 | 5.183e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.346775146026058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4804405472731752, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (1.6%)
patch tree reduce : 1.91 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 407.32 us (94.7%)
LB move op cnt : 0
LB apply : 4.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3968e+04 | 30464 | 1 | 4.762e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.322748932313672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4836581691641022, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.4%)
patch tree reduce : 1.95 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 430.48 us (95.2%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5511e+04 | 30464 | 1 | 4.650e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.9094176715468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4868757910550292, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 381.64 us (94.6%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5638e+04 | 30464 | 1 | 4.641e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.95790892159098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4900934129459562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (1.8%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 358.61 us (94.2%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6032e+04 | 30464 | 1 | 4.614e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.107491197299282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4933110348368832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.7%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 352.72 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (73.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5941e+04 | 30464 | 1 | 4.620e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.072868594284127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4965286567278102, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 358.72 us (94.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5307e+04 | 30464 | 1 | 4.665e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.831805048626975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4997462786187372, dt = 0.00025372138126278365 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (1.7%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 365.67 us (94.4%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5755e+04 | 30464 | 1 | 4.633e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9715117646480564 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 484 [SPH][rank=0]
Info: time since start : 247.37623419200003 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006776904 s
Info: evolve_until (target_time = 1.60s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1.5, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.11 us (2.0%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 461.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 486.81 us (95.1%)
LB move op cnt : 0
LB apply : 5.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (77.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5924e+04 | 30464 | 1 | 4.621e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.066354741344504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.503217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (1.9%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 365.74 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5890e+04 | 30464 | 1 | 4.623e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.053630879866912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.506435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (1.9%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 343.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (64.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6316e+04 | 30464 | 1 | 4.594e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.215472136392027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.509652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (1.8%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 353.78 us (94.4%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8734e+04 | 30464 | 1 | 5.187e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.332676226515005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.512870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.8%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 323.33 us (93.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8354e+04 | 30464 | 1 | 5.221e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.188073431456836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.516088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.9%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 330.19 us (94.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0729e+04 | 30464 | 1 | 5.016e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.091372106859914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.519305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (1.9%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 327.72 us (93.9%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5795e+04 | 30464 | 1 | 4.630e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.01746481898077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.522523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (1.8%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 371.85 us (94.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6176e+04 | 30464 | 1 | 4.603e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.162347816002793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.525740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.6%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 366.51 us (94.1%)
LB move op cnt : 0
LB apply : 4.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (73.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5857e+04 | 30464 | 1 | 4.626e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.040931351375686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.528958597018343, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.6%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.3%)
LB compute : 387.67 us (94.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5972e+04 | 30464 | 1 | 4.618e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.08473461160668 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.53217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.9%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 321.96 us (94.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5654e+04 | 30464 | 1 | 4.640e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.96387929957438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.535393840800197, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.4%)
patch tree reduce : 1.82 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 411.54 us (95.0%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (62.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5990e+04 | 30464 | 1 | 4.616e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.09170941483267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.538611462691124, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.6%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 353.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6047e+04 | 30464 | 1 | 4.612e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.11335210941609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.541829084582051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.5%)
patch tree reduce : 1.94 us (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 415.30 us (94.8%)
LB move op cnt : 0
LB apply : 4.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5801e+04 | 30464 | 1 | 4.630e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.019742410822005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.545046706472978, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.0%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 326.26 us (93.5%)
LB move op cnt : 0
LB apply : 4.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (62.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6275e+04 | 30464 | 1 | 4.597e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.199824629390452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.548264328363905, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (1.7%)
patch tree reduce : 1.98 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.2%)
LB compute : 418.01 us (94.8%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2218e+04 | 30464 | 1 | 4.896e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.657557114175045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.551481950254832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (1.9%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 377.40 us (94.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5745e+04 | 30464 | 1 | 4.634e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.998359634815262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.554699572145759, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.8%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 354.43 us (94.1%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (63.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6017e+04 | 30464 | 1 | 4.615e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.102004005921017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.557917194036686, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.6%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 397.79 us (94.8%)
LB move op cnt : 0
LB apply : 4.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4640e+04 | 30464 | 1 | 4.713e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.57814694738641 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.561134815927613, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.6%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 382.16 us (94.5%)
LB move op cnt : 0
LB apply : 4.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (75.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5830e+04 | 30464 | 1 | 4.628e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.03061203156568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.56435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (1.6%)
patch tree reduce : 1.87 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 418.82 us (95.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5135e+04 | 30464 | 1 | 4.677e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.766505699822734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.567570059709467, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.74 us (0.4%)
LB compute : 373.22 us (94.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6760e+04 | 30464 | 1 | 5.367e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.582227388253497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.570787681600394, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (1.8%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 354.95 us (94.3%)
LB move op cnt : 0
LB apply : 4.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5684e+04 | 30464 | 1 | 4.638e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.975111770952893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.574005303491321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.60 us (0.4%)
LB compute : 357.20 us (94.3%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4875e+04 | 30464 | 1 | 4.696e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.66764389683618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.577222925382248, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.02 us (2.1%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 350.35 us (93.9%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4815e+04 | 30464 | 1 | 4.700e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.64502489080294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.580440547273175, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.7%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 349.37 us (89.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (64.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5857e+04 | 30464 | 1 | 4.626e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.041235366940032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.583658169164102, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (1.8%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 379.81 us (94.6%)
LB move op cnt : 0
LB apply : 4.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0696e+04 | 30464 | 1 | 5.019e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.078511563237658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.586875791055029, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (1.9%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 345.44 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (73.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5948e+04 | 30464 | 1 | 4.619e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.075495873742966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.590093412945956, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 364.42 us (94.4%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6386e+04 | 30464 | 1 | 4.589e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.242003046880154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.593311034836883, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 320.12 us (93.9%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6271e+04 | 30464 | 1 | 4.597e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.198526996724887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.59652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.6%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 368.19 us (94.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5642e+04 | 30464 | 1 | 4.641e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.959390451764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.599746278618737, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 339.88 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6161e+04 | 30464 | 1 | 4.605e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9836936896510025 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 516 [SPH][rank=0]
Info: time since start : 262.994053779 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006435762 s
Info: evolve_until (target_time = 1.70s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1.6, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.49 us (2.4%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 480.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 418.35 us (94.2%)
LB move op cnt : 0
LB apply : 4.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (74.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3519e+04 | 30464 | 1 | 4.796e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.15201034170058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.603217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (1.8%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 379.83 us (94.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1241e+04 | 30464 | 1 | 4.974e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.285843920113546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.606435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 328.77 us (93.9%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5595e+04 | 30464 | 1 | 4.644e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.94136172164982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.609652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 373.21 us (94.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5741e+04 | 30464 | 1 | 4.634e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.996770929997943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.612870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 365.06 us (94.1%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3219e+04 | 30464 | 1 | 4.819e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.038019329328506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.616088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.6%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 376.69 us (94.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6130e+04 | 30464 | 1 | 4.607e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.14475237009945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.619305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.9%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 328.23 us (93.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6563e+04 | 30464 | 1 | 5.386e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.507265513953435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.622523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.0%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 321.63 us (93.5%)
LB move op cnt : 0
LB apply : 4.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5580e+04 | 30464 | 1 | 4.645e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.9359145276016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.625740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (1.8%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 357.44 us (93.9%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0996e+04 | 30464 | 1 | 4.994e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.192796120966797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6289585970183431, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.8%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 368.80 us (94.1%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5746e+04 | 30464 | 1 | 4.634e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.99870264893478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6321762189092701, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 336.32 us (94.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (62.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5990e+04 | 30464 | 1 | 4.616e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.091602448715175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6353938408001971, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.7%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 350.50 us (94.1%)
LB move op cnt : 0
LB apply : 4.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (72.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6082e+04 | 30464 | 1 | 5.432e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.324289122550425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6386114626911241, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 324.83 us (93.9%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (59.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6074e+04 | 30464 | 1 | 4.611e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.123385259732487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.7%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 367.43 us (94.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5504e+04 | 30464 | 1 | 4.651e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.906730231282847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 359.80 us (94.4%)
LB move op cnt : 0
LB apply : 4.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5777e+04 | 30464 | 1 | 4.631e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.010619248147414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.9%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 327.75 us (93.9%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5938e+04 | 30464 | 1 | 4.620e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.071911935615084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.8%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 328.12 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6004e+04 | 30464 | 1 | 4.615e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.09710738733885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.9%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 331.66 us (94.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5676e+04 | 30464 | 1 | 4.639e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.97220103509798 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (1.6%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 402.87 us (94.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6015e+04 | 30464 | 1 | 4.615e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.1012527983402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 360.37 us (94.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6032e+04 | 30464 | 1 | 4.614e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.107615224116795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 330.98 us (94.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6030e+04 | 30464 | 1 | 4.614e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.106999238140475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.9%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.4%)
LB compute : 334.31 us (93.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5997e+04 | 30464 | 1 | 4.616e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.094388974467147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.5%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 382.45 us (94.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6029e+04 | 30464 | 1 | 4.614e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.10660682746141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6740053034913212, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (1.8%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 364.49 us (94.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6072e+04 | 30464 | 1 | 4.611e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.122701480184762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6772229253822482, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 367.35 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4825e+04 | 30464 | 1 | 4.699e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.648533761636372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6804405472731752, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.3%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 400.81 us (95.4%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6023e+04 | 30464 | 1 | 4.614e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.104089944217964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6836581691641022, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (1.7%)
patch tree reduce : 2.60 us (0.6%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 412.04 us (94.6%)
LB move op cnt : 0
LB apply : 4.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5690e+04 | 30464 | 1 | 4.638e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.977471063176303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6868757910550292, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.17 us (2.0%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 387.60 us (94.0%)
LB move op cnt : 0
LB apply : 4.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5666e+04 | 30464 | 1 | 5.473e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.16600078304339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6900934129459562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.6%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 385.06 us (94.6%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5997e+04 | 30464 | 1 | 4.616e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.09440528384067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6933110348368832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.6%)
patch tree reduce : 1.89 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 401.53 us (94.8%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5984e+04 | 30464 | 1 | 4.617e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.0893912589872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6965286567278102, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 367.87 us (94.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9497e+04 | 30464 | 1 | 5.120e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.62263413686998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6997462786187372, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.4%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 396.20 us (95.2%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5847e+04 | 30464 | 1 | 4.626e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.974281260453162 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 548 [SPH][rank=0]
Info: time since start : 278.888954237 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006877956 s
Info: evolve_until (target_time = 1.80s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1.7000000000000002, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.23 us (2.4%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 368.71 us (94.3%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (74.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5589e+04 | 30464 | 1 | 4.645e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.93911953244648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7032176218909272, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.9%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 330.80 us (94.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6014e+04 | 30464 | 1 | 4.615e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.10065795651701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7064352437818542, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.1%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 326.10 us (93.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6117e+04 | 30464 | 1 | 4.608e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.139764530211746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7096528656727812, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.5%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 383.40 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6175e+04 | 30464 | 1 | 4.604e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.16179915696776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7128704875637082, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.6%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 411.10 us (94.9%)
LB move op cnt : 0
LB apply : 4.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3043e+04 | 30464 | 1 | 4.832e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.970983935186567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7160881094546352, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.4%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 368.76 us (94.9%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5951e+04 | 30464 | 1 | 4.619e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.076950789166197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7193057313455622, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.5%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 410.94 us (95.2%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6159e+04 | 30464 | 1 | 4.605e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.155707851007172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7225233532364892, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 359.89 us (94.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6037e+04 | 30464 | 1 | 4.613e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.1095722236396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7257409751274162, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.5%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 366.93 us (94.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6402e+04 | 30464 | 1 | 4.588e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.24819411593641 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7289585970183432, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 359.77 us (94.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6135e+04 | 30464 | 1 | 4.606e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.146656696040605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7321762189092702, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 313.96 us (94.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6387e+04 | 30464 | 1 | 4.589e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.242688165294147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7353938408001972, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 320.45 us (94.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6410e+04 | 30464 | 1 | 4.587e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.251170155646314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7386114626911242, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.7%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 363.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5906e+04 | 30464 | 1 | 4.622e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.059693067442304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7418290845820512, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.4%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 384.92 us (94.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6127e+04 | 30464 | 1 | 4.607e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.143668562646088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7450467064729782, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.7%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 349.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6393e+04 | 30464 | 1 | 4.588e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.244799311954473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7482643283639052, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.7%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 349.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4148e+04 | 30464 | 1 | 4.749e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.39109742989954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7514819502548322, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.2%)
LB compute : 416.79 us (95.2%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2896e+04 | 30464 | 1 | 4.844e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.91511453843108 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7546995721457592, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 361.54 us (94.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6173e+04 | 30464 | 1 | 4.604e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.16122122701298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7579171940366862, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.9%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 325.32 us (93.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (64.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6156e+04 | 30464 | 1 | 4.605e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.154741309817272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7611348159276132, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.72 us (0.4%)
LB compute : 364.09 us (94.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6230e+04 | 30464 | 1 | 4.600e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.182849152617607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7643524378185402, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.9%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 315.66 us (93.5%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2335e+04 | 30464 | 1 | 4.887e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.702008963585577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7675700597094672, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 339.10 us (94.2%)
LB move op cnt : 0
LB apply : 4.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4842e+04 | 30464 | 1 | 4.698e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.655297930645666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7707876816003942, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.2%)
patch tree reduce : 1.85 us (0.4%)
gen split merge : 1.03 us (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.2%)
LB compute : 446.48 us (95.6%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6017e+04 | 30464 | 1 | 4.615e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.101895428895784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7740053034913212, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 352.29 us (88.9%)
LB move op cnt : 0
LB apply : 26.46 us (6.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (58.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6352e+04 | 30464 | 1 | 4.591e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.229134794355097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7772229253822482, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 327.48 us (93.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6325e+04 | 30464 | 1 | 4.593e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.218924943254514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7804405472731752, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 323.61 us (94.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6519e+04 | 30464 | 1 | 4.580e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.292779376616313 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7836581691641022, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.3%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 420.11 us (95.4%)
LB move op cnt : 0
LB apply : 4.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4289e+04 | 30464 | 1 | 4.739e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.444768670815535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7868757910550293, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 346.23 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8876e+04 | 30464 | 1 | 5.174e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.386459402957005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7900934129459563, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 347.51 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6287e+04 | 30464 | 1 | 4.596e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.20472538328494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7933110348368833, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 352.28 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6274e+04 | 30464 | 1 | 4.597e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.199757581853284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7965286567278103, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.6%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 351.09 us (94.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6184e+04 | 30464 | 1 | 4.603e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.165272433479416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7997462786187373, dt = 0.00025372138126278365 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 347.94 us (94.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6269e+04 | 30464 | 1 | 4.597e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9869372312745415 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 580 [SPH][rank=0]
Info: time since start : 294.28638696400003 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006743337 s
Info: evolve_until (target_time = 1.90s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1.8, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.72 us (2.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 343.86 us (93.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6053e+04 | 30464 | 1 | 4.612e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.1156274813828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.803217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.4%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 386.46 us (95.2%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6410e+04 | 30464 | 1 | 4.587e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.251451553767186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.806435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.5%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 359.97 us (94.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6386e+04 | 30464 | 1 | 4.589e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.242380393730116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.809652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.6%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 386.77 us (95.0%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6507e+04 | 30464 | 1 | 4.581e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.2882867526436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.812870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 366.26 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6155e+04 | 30464 | 1 | 4.605e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.154464575760443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.816088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 355.37 us (94.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4627e+04 | 30464 | 1 | 4.714e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.57351516279973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.819305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 369.01 us (94.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6132e+04 | 30464 | 1 | 4.607e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.14550689322827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.822523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 342.83 us (94.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6092e+04 | 30464 | 1 | 4.609e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.130395097234704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.825740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.3%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 400.11 us (95.1%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6011e+04 | 30464 | 1 | 4.615e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.099470260974407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.828958597018343, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.6%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 372.70 us (94.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1844e+04 | 30464 | 1 | 4.926e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.515318050325096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.83217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.4%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 365.46 us (94.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8745e+04 | 30464 | 1 | 5.186e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.33670325810977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.835393840800197, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.9%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 325.72 us (94.1%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6387e+04 | 30464 | 1 | 4.589e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.242754726351347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.838611462691124, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.72 us (3.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 318.24 us (92.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6217e+04 | 30464 | 1 | 4.601e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.177788342604057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.841829084582051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.4%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 365.06 us (95.0%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6059e+04 | 30464 | 1 | 4.612e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.11768812497467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.845046706472978, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 340.53 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6345e+04 | 30464 | 1 | 4.592e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.22675195052705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.848264328363905, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 355.25 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (61.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6097e+04 | 30464 | 1 | 4.609e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.132338745605715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.851481950254832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 347.48 us (94.5%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1655e+04 | 30464 | 1 | 4.941e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.44342483431356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.854699572145759, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 329.11 us (94.4%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4737e+04 | 30464 | 1 | 4.706e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.61508711451949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.857917194036686, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 324.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (72.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6519e+04 | 30464 | 1 | 4.580e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.29271155739404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.861134815927613, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.5%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 363.43 us (94.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5989e+04 | 30464 | 1 | 4.617e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.09116502766009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.86435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 321.26 us (94.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4444e+04 | 30464 | 1 | 4.727e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.503724105197644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.867570059709467, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 337.44 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6398e+04 | 30464 | 1 | 4.588e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.24681451419115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.870787681600394, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 349.62 us (94.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6514e+04 | 30464 | 1 | 4.580e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.29088239809489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.874005303491321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.4%)
patch tree reduce : 2.21 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 383.27 us (94.8%)
LB move op cnt : 0
LB apply : 4.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.00 us (95.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5913e+04 | 30464 | 1 | 4.622e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.062258643099355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.877222925382248, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 351.50 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1404e+04 | 30464 | 1 | 4.961e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.348022641288356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.6%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 373.81 us (94.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5714e+04 | 30464 | 1 | 4.636e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.98685151500147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (1.9%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 369.36 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5970e+04 | 30464 | 1 | 4.618e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.084007251468375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 364.79 us (94.7%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6491e+04 | 30464 | 1 | 5.393e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.479822299519064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.58 us (2.0%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.70 us (0.5%)
LB compute : 350.53 us (93.8%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9372e+04 | 30464 | 1 | 5.131e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.575393588552508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.4%)
patch tree reduce : 1.85 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 392.71 us (95.0%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (76.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6377e+04 | 30464 | 1 | 4.590e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.23890680853967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 378.24 us (94.6%)
LB move op cnt : 0
LB apply : 4.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6096e+04 | 30464 | 1 | 4.609e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.13175747888258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8997462786187371, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 30464.0 min = 30464.0 factor = 1
- strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 30464
max = 30464
avg = 30464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 363.93 us (94.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (72.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0085e+04 | 30464 | 1 | 5.070e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8015259333147176 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 612 [SPH][rank=0]
Info: time since start : 309.871295508 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006501753000000001 s
Plot making#
You may notice the precense of a small kink at the edge of the diffusion or a spike in the ds/dt This is due to the low resolution of the test. If you push it is will soften.
Also remember that \(s = \sqrt{\rho \epsilon}\) raise sharply from 0 which does not help. In that context using the \(\epsilon\) behaves better.
Convert PNG sequence to Image sequence in mpl#
277 from shamrock.utils.plot import show_image_sequence
278
279 # If the animation is not returned only a static image will be shown in the doc
280
281 glob_str = os.path.join("_to_trash", "dump_dustydiffuse_tva_*.png")
282 ani = show_image_sequence(glob_str)
283
284 from matplotlib.animation import PillowWriter
285
286 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
287 ani.save("_to_trash/dump_dustydiffuse_tva.gif", writer=writer)
288
289 if shamrock.sys.world_rank() == 0:
290 # Show the animation
291 plt.show()
PL15 like figure#
297 plt.figure()
298 for i, (t, r_data, eps) in enumerate(snapshots):
299 plt.plot(
300 r_ana,
301 analytic_eps_curve(t),
302 "--",
303 color="black",
304 label="analytic" if i == 0 else "_nolegend_",
305 )
306 plt.plot(r_data, eps, ".", label=f"t = {t:.2f}")
307
308
309 plt.xlabel(r"$r$")
310 plt.ylabel(r"$\epsilon$")
311 plt.xlim(0, 0.5)
312 plt.ylim(0, 0.11)
313 plt.legend()
314 plt.show()

Total running time of the script: (5 minutes 3.488 seconds)
Estimated memory usage: 399 MB